将非HTTPS重定向到HTTPS

时间:2016-11-18 13:20:28

标签: .htaccess mod-rewrite

我正在尝试强制非HTTPS访问者使用HTTPS,请参阅下面的代码

new

它将 example.com 重定向到 https://example.com/index.php 我只想 example.com 重定向到 https://example.com

请帮忙。

1 个答案:

答案 0 :(得分:1)

撤销订单:

RewriteEngine On

RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]