我尝试使用.htaccess(apache 2.2)进行以下重定向(301) * /?q = / shop / to * 字符串在最后。
the sandbox上的代码是:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^q=/shop/$
RewriteRule (.*) $1? [R=permanent]

沙箱中的结果最后有/%3F?q = / shop /。 我的网站上使用apache 2.2的htaccess也不行。 有什么问题?