2017-07-05 59 views
0

我当前正试图重定向一个目录,以便它在URL的末尾添加一个尾部斜线。我曾尝试将尾部斜杠添加到htaccess中的单个目录

Redirect 301 /category/blog http://www.example/category/blog/ 

Redirect 301 http://www.example.co.uk/category/blog http://www.example.co.uk/category/blog/ 

然而这会导致一个无限循环,从而尾随斜线不断得到追加到URL的末尾,以便它最终成为http://www.example.co.uk/category/blog/////////

只请注意我想要定位这个网址,而不是其他网址。

我该如何得到这个工作?

回答

0

可以限制要精确匹配,而不是一个前缀匹配,与RedirectMatch:

RedirectMatch ^/category/blog$ http://www.example/category/blog/