我有这个动态规则:
RewriteRule ^(.*)/(.*)$ /rewrite.php?sub=$1&second=$2 [NC]
我正在尝试添加一些像这样的静态规则:
RedirectMatch 302 /construction/pools.html http://www.{samedomain}.com/construction-services/pools
问题是当我在地址栏中键入以下内容时:
http://www.{samedomain}.com/construction/pools.html
然后apache重定向到:
http://www.{samedomain}.com/construction-services/pools?sub=construction&second=pools.html
我想要的是apache重定向到:
http://www.{samedomain}.com/construction-services/pools
有人知道为什么吗?
谢谢你。