我正在尝试实施一些URL重写,但我遇到了一个问题。查询字符串条件似乎没有得到匹配。
示例网址: http://www.domain.com/ProductDetails.asp?ProductCode=498688
这是我写的规则。
RewriteCond %{QUERY_STRING} ^ProductCode=(.*)$
RewriteRule (.*) /catalogsearch/result/?q=%1 [R=301,L]
我有另一条几乎相同的规则。为什么这个没有被解雇的任何想法?