我目前正在尝试重定向目录,以便在URL的末尾添加一个尾部斜杠。我试过了
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 :(得分:1)
您可以使用RedirectMatch限制精确匹配,而不是前缀匹配:
RedirectMatch ^/category/blog$ http://www.example/category/blog/