如何使用htaccess将查询字符串网址重定向到子域名网址

时间:2018-02-08 19:06:41

标签: php apache .htaccess redirect mod-rewrite

我想将查询字符串网址重定向到子域名网址:

https://domainname.com/login/?_redirected=yeshttp://subdomain.domain.com

我尝试了一些htaccess代码,但它没有用。我该如何解决这个问题。

RewriteCond %{HTTP_HOST} =myhost.com [NC]
RewriteCond %{QUERY_STRING} ^(p=1&preview=true)
RewriteRule ^$ http://alt.myhost.com/?%1 [R=301,L]

0 个答案:

没有答案