0

我正在尝试使用问号重定向 URL,但它并没有真正归类为参数。我只是不确定如果进行 mod_rewrite 会使用什么 query_string。

我想重定向:

/category/产品名称?.html

至:

/category/产品名称.html

请注意,唯一的区别是删除了问号。

感谢你的帮助。

谢谢。

4

1 回答 1

0
RewriteCond %{QUERY_STRING} ^(\.html)$
RewriteRule ^(category/Product-Name)$ $1%1? [L]
于 2013-05-31T13:27:57.207 回答