将所有版本的URL重定向到https:// www

时间:2018-08-03 00:27:31

标签: apache .htaccess redirect url-redirection

我的问题是我需要所有版本的URL才能重定向到https://www,但我无法弄清楚。

我已经尝试过:

RewriteEngine On

RewriteCond %{HTTPS} !on [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.example.com%{REQUEST_URI} [L,R=301]

但是当我将其测试为:

example.com/hello

我得到

https://example.com/hello

它不添加www。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

继续尝试一下。

RewriteEngine On
# ensure www.
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

# ensure https
RewriteCond %{HTTP:X-Forwarded-Proto} !https 
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

应该为你工作。