具有特殊字符的Htaccess重定向(%E2%80%8E)

时间:2015-03-17 13:24:12

标签: wordpress apache .htaccess mod-rewrite redirect

问题与此非常相似,但接受的答案在我们的案例中不起作用:

Remove string from URL using .htaccees

我们尝试重定向的网站网址如下:

http://www.example.com/fr/sub-folder/%E2%80%8E

该网站正在运行WordPress。我们只是想将此网址重定向到基页(http://www.example.com/fr/sub-folder/

我们首先尝试了基本的301:

redirect 301 "/fr/sub-folder/%E2%80%8E" http://www.example.com/fr/sub-folder/

我们尝试了以下方法:

RewriteEngine on
RewriteCond %{REQUEST_URI} ^/([a-zA-Z0-9_-]+)/\%20\%E2\%80\%8E$
RewriteRule ^(.*) http://example.com/fr/sub-folder/%1/ [R,L]

这个小变化:

RewriteEngine on
RewriteCond %{REQUEST_URI} ^/([a-zA-Z0-9_-]+)/\%E2\%80\%8E$
RewriteRule ^(.*) http://example.com/fr/sub-folder/%1/ [R,L]

但没有任何效果。

任何帮助都将不胜感激。

谢谢,

1 个答案:

答案 0 :(得分:2)

您可以使用此规则:

RewriteRule /\xE2\x80\x8E$ /fr/sub-folder [L,R=302]