Apache Redirect Rule重定向查询参数中存在的URL

时间:2015-01-20 12:04:41

标签: apache mod-rewrite

我有一个网址

www.xyz.com/test/?redTo=www.abc.com||www.google.com&state=abdhs7899928392

我想将此网址重定向到

www.google.com.com/?redTo=www.abc.com||www.google.com&state=abdhs7899928392

(&#34; ||&#34;是静态的我想从redTo查询字符串中获取www.google.com并将所有参数传递给www.google.com,如上面的url所示)< / p>

1 个答案:

答案 0 :(得分:1)

使用此:

RewriteEngine On
RewriteCond %{QUERY_STRING} redTo=([^&\s]+)
RewriteRule ^/test http://%1