如何使用htacces删除www

时间:2018-03-19 10:50:51

标签: php apache .htaccess

我想要没有www的redirct https,

我试过下面的代码,

RewriteCond %{HTTP_HOST} ^www\.subdomain.doamin\.io [NC]
RewriteRule ^(.*)$ https://ubdomain.doamin.io/$1 [L,R=301]

1 个答案:

答案 0 :(得分:0)

尝试下面的代码,它将重定向到没有www的https并且适用于我

RewriteEngine On 
RewriteCond %{HTTPS} off 
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.*)$ [NC]
RewriteRule (.*) https://%1%{REQUEST_URI} [L,R=301]