我正试图弄清楚如何使用Apache重写/重定向从某些URL中删除尾部斜杠。
例如:
我想301将www.example.com/woo/重定向到www.example.com/woo
我只想从某些网址中删除尾随斜杠。
任何帮助?
答案 0 :(得分:0)
对于单个网址:
RedirectMatch ^/woo/$ http://www.example.com/woo
对多个网址使用正则表达式组替换:
RedirectMatch ^/(woo|cage|travolta)/$ http://www.example.com/$1
将适用于这三个例子:
http://www.example.com/woo/
http://www.example.com/cage/
http://www.example.com/travolta/