我想将用户重定向到没有特定变量的 URL。例如
example.com/?hop=hahaha
我想删除跳跃变量并重定向到
example.com/
例如,对于子目录也是如此
example.com/subdir/?hop=hahaha
或者
example.com/subdir?hop=hahaha
变成
example.com/subdir
我目前有这个,但它只适用于根域,不适用于子目录
RewriteCond %{QUERY_STRING} ^hop=
RewriteRule .* /? [R,L]
(以供参考点击银行将跳转变量添加到着陆页)
答案1
RewriteEngine On
RewriteCond %{QUERY_STRING} ^hop=
RewriteRule (.*) $1? [R,L]