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