在QueryString中替换+ -
以下是我当前重写规则的一个示例:
它完全重定向,虽然我希望它用 - 符号替换+符号,例如:
http://subdomain.site.com/folder/page.php?to=twenty+five
变为:
http://www.site.com/folder/subfolder/twenty-five
RewriteCond %{QUERY_STRING} ^to=(five|fifteen|twenty\+five)
RewriteRule ^/folder/page.php$ http://www.site.com/folder/subfolder/%1? [R=301,L]
非常感谢任何帮助。
谢谢。