0

嗨,有人可以解释一下这条规则到底会做什么。我想知道它的作用是什么?接近尾声。

RewriteRule ^(products/someproduct.html)$ https://www.myserver.com/? [R=301,L]

期待对最后一个字符的快速解释

4

1 回答 1

2

这可以防止将查询字符串附加到新 URL。

例如,请求 https://www.myserver.com/products/someproduct.html?qu=1&bu=2

with? : 被重定向到https://www.myserver.com/
without? : 被重定向到https://www.myserver.com/?qu=1&bu=2

于 2013-10-17T09:01:24.967 回答