将所有子域重定向到另一个域apache

时间:2013-05-20 21:30:03

标签: mod-rewrite apache2

我想将以邮件开头的网站服务器网站的所有子域重定向到https://anotherSub.domain.com

我该怎么做?

Put this at the top of the yours default apache config file
RewriteEngine on  
RewriteCond %{HTTP_HOST} ^SUBDOMAIN.* 
RewriteRule ^(.*) YOUR LINK (ex. http://www.google.it)

1 个答案:

答案 0 :(得分:1)

此代码匹配mail上以domain.com开头的所有子域名,并将其重写为https://anothersub.domain.com

RewriteEngine on
RewriteCond %{HTTP_HOST} ^mail(.*?).domain.com [NC]
RewriteRule ^(.*)$ https://anothersub.domain.com/$1 [L, 301]
相关问题