我正在尝试强制非HTTPS访问者使用HTTPS,请参阅下面的代码
new
它将 example.com 重定向到 https://example.com/index.php 我只想 example.com 重定向到 https://example.com
请帮忙。
答案 0 :(得分:1)
撤销订单:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]