我想在不查看查询字符串的情况下进行重定向,并且我的重定向结果也不需要附加查询字符串,因此我?
在 RewriteRule 的末尾添加了一个。
我尝试了以下语法,但结果接近它。
RewriteCond %{QUERY_STRING} .* [NC]
RewriteRule ^exd\.asp$ http://www.example.com/index.php?r=p/consumer? [R=301,L]
而且,我试图逃避第一个?
,我需要它,但结果仍然相同。
RewriteRule ^exd\.asp$ http://www.example.com/index.php\?r=p/consumer? [R=301,L]
结果:
http://www.example.com/index.php?r=p/consumer%3f
我想搭车%3f
。
谢谢!