Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚如何使用 Apache 重写/重定向仅从某些 URL 中删除尾部斜杠。
例如:
我想 301 重定向 www.example.com/woo/ 到 www.example.com/woo
我只想从某些 URL 中删除尾部斜杠。
有什么帮助吗?
对于单个 URL:
RedirectMatch ^/woo/$ http://www.example.com/woo
对多个 URL 使用正则表达式组交替:
RedirectMatch ^/(woo|cage|travolta)/$ http://www.example.com/$1
将适用于这三个示例:
http://www.example.com/woo/ http://www.example.com/cage/ http://www.example.com/travolta/