我想将以邮件开头的网站服务器网站的所有子域重定向到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)
答案 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]