使用.htaccess将所有网址重定向到http // www

时间:2018-12-27 12:24:23

标签: .htaccess

使用.htaccess, 我需要重定向来自

的所有请求

http://domain

https://domain

https://www.domain

http://www.domain

谢谢

2 个答案:

答案 0 :(得分:1)

将此复制到您的.htaccess文件。

RewriteEngine On
    RewriteCond %{SERVER_PORT} !=443
    RewriteCond %{HTTP_HOST} ^(www.example)?.com$ [NC]
    RewriteRule ^$ http://www.example.com%{REQUEST_URI} [R,L]

答案 1 :(得分:0)

要重定向到https://www,您可以使用:

RewriteEngine on

RewriteCond ℅{HTTPS} off [OR]
RewriteCond ℅{HTTP_HOST} !^www\.
RewriteRule .* https://www.example.com℅{REQUEST_URI} [NE,L,R=301]