我们正在接收来自重要来源的流量,但他们正使用/发送到我们的域名?在它的最后。我尝试使用.htaccess中的条目重定向但这不起作用:
Redirect /? http://[domain]
RewriteEngine on
RewriteBase /
我也试过反斜杠:
Redirect /\? http://[domain]
RewriteEngine on
RewriteBase /
任何人都知道如何让它发挥作用?
答案 0 :(得分:2)
您不需要Redirect
指令,因为此案例需要更高级的mod_rewrite
。
尝试此规则:
RewriteEngine on
RewriteCond %{THE_REQUEST} \s/+([^?]*)\?\s [NC]
RewriteRule ^ /%1? [R=302,L]