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