我想将查询字符串网址重定向到子域名网址:
https://domainname.com/login/?_redirected=yes
至
http://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]