使用htaccess重定向除一个以外的所有子域

时间:2016-05-07 15:14:42

标签: apache .htaccess redirect mobile subdomain

目前的htaccess:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^mywebsite.co.uk [NC]
RewriteRule ^(.*)$ http://www.mywebsite.co.uk/$1 [L,R=301,NC]

我还有一个子域名: m.mywebsite.co.uk 我不想要这个" m。"域名重定向,但存在或未定向到www.mywebsite.co.uk的所有其他子域名包括" mywebsite.co.uk"

你能帮忙吗? 感谢

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine on
RewriteCond %{HTTP_HOST} !^m\.mywebsite\.co\.uk$
RewriteCond %{HTTP_HOST} !^www\.mywebsite\.co\.uk$ [NC]
RewriteRule ^(.*)$ http://www.mywebsite.co.uk/$1 [L,R=301,NC]
相关问题