htaccess字符串查询 - 仅从主页重定向但携带参数

时间:2017-09-12 13:29:16

标签: apache .htaccess redirect mod-rewrite

所以我需要重新定向这些特定的参数只在家里但只能从家里...因为我们需要在重定向发生后保持参数,我们不希望重定向被反复触发,因为符号被满足了。请多多帮助,非常感谢!

FROM:/?color=blue&derps=many&db=true

TO:/path-to-direct-to?color=blue&derps=many&db=true

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_URI} /
    RewriteCond %{QUERY_STRING} ^color=blue&derps=many&db=true
    RewriteRule ^ /path-to-direct-to [R=301,QSA,L]
</IfModule>

0 个答案:

没有答案