将站点重定向到https后,站点IP重定向不起作用

时间:2017-12-26 19:19:49

标签: .htaccess redirect ip

我正在使用.htaccess将我网站上的所有内容重定向到https。例如,http://example.se重定向到https://www.example.se。一切似乎都有效,除了网站ip 111.111.111.111现在重定向到https://www.111.111.111.111而不是网站https://www.example.se

这是我的.htaccess代码

RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://www.%1%{REQUEST_URI} [L,NE,R=301]
Options -Indexes

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine On

# redirect http to https
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.example.se/$1 [L,NE,R=301]

# redirect non-www to www
RewriteCond %{HTTP_HOST} !^www.example.se [NC]
RewriteRule ^(.*)$ https://www.example.se/$1 [L,NE,R=301]