301使用问号/参数重定向URL

时间:2013-05-29 18:54:10

标签: apache mod-rewrite redirect http-status-code-301

我尝试重定向带有问号的网址,但它并未真正归类为参数。我只是不确定在执行mod_rewrite时我会使用什么query_string。

我想重定向:

  

/category/Product-Name?.html

致:

  

/category/Product-Name.html

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

感谢您的帮助。

感谢。

1 个答案:

答案 0 :(得分:0)

RewriteCond %{QUERY_STRING} ^(\.html)$
RewriteRule ^(category/Product-Name)$ $1%1? [L]