Apache将HTTP重定向到HTTPS

1:

在apache配置文件中编辑virtualhost网站并添加以下选项。将www.example.com更改为你的实际域名。

Redirect permanent / https://www.example.com/

2:

在Apache配置文件中编辑VirtualHost网站并添加以下设置。你也可以在网站的文档根目录下的.htaccess文件中添加相同的设置。

RewriteEngine On

RewriteCond %{HTTPS} off

RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

如果要将特定URL重定向到https。使用以下设置。例如,如果有人试图访问网站上的always-secure.html文件。用户必须使用SSL访问URL。

RewriteEngine On

RewriteRule ^always-secure.html$ https://www.example.com/always-secure.html [R=301,L]

相关推荐