不能301重定向具有尾部斜杠的网址

时间:2013-11-03 17:46:37

标签: .htaccess

我可以做这个重定向:

重定向301 /donate.html http://domainname.org/donate.shtml

但这不起作用:

重定向301 /捐赠/ http://domainname.org/donate.shtml

为什么?

1 个答案:

答案 0 :(得分:0)

因为Redirect不支持正则表达式。使用RedirectMatch代替可选的尾部斜杠:

RedirectMatch 301 ^/donate/?$ http://domainname.org/donate.shtml