0

快速一个:有一个类似的网址: /some.aspx?p= 1&p=2 我需要重定向到: /other没有任何参数。

我有以下内容:

RewriteRule \/some\.aspx? /other? [NC,L,R=301]

但我仍然以尾随 ? 即/其他?

4

1 回答 1

0

用这个替换你的代码:

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+some\.aspx\?p=1&p=2[&\s] [NC]
RewriteRule ^ /other? [R=301,L]
于 2013-09-01T15:38:37.540 回答