.htaccess RewriteRule删除之间的字符串

时间:2015-07-20 14:32:18

标签: .htaccess mod-rewrite

我正在尝试查找将从http://website.cz/uploads/fotky/test---4751_image2.jpg重定向到http://website.cz/uploads/fotky/4751_image2.jpg的RewriteRule。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以在DOCUMENT_ROOT/.htaccess文件中使用此规则:

RewriteEngine On
RewriteRule ^(uploads/fotky)/test--(.+)$ /$1/$2 [L,NC,R=301]