htaccess将http://subdomain.example.com重定向到www.subdomain.example.com

问题描述 投票:0回答:1

我可以使用下面的代码将我的网站http://example.com重定向到www.example.com。

RewriteCond %{HTTP_HOST} ^example.com <br />
RewriteRule (.*) http://www.example.com/$1 [R=301,L] 

但是没有获得http://subdomain.example.com的解决方案到www.subdomain.example.com?

.htaccess mod-rewrite url-rewriting
1个回答
0
投票

试试吧:

RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [L,R=301]
© www.soinside.com 2019 - 2024. All rights reserved.