如何添加子域名在.htaccess并迫使WWW网址中(How to add subdomain in

2019-10-17 04:39发布

我有以下代码强制WWW网址中

rewriteCond %{HTTP_HOST} !^www.example.com [NC]
rewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]

我想补充一个子max.example并参考www.example.com/update/max目录如果我不添加任何规则,max.example.com会重定向到www.example.com/update/max。 如果我删除力WWW URL中它的工作原理。 但我仍然需要强制WWW URL中。 如何编写规则?

谢谢!

Answer 1:

您的规则改成这样:

RewriteCond %{HTTP_HOST} !^(www|max)\.example\.com$ [NC]
RewriteRule ^ http://www.example.com%{REQUEST_URI} [R=301,L]


文章来源: How to add subdomain in .htaccess and force WWW in url