gpt4 book ai didi

apache - http 到 https 导致重定向循环

转载 作者:可可西里 更新时间:2023-11-01 17:08:13 27 4
gpt4 key购买 nike

我希望将我网站的所有访问者转发到使用 HTTPS 而不是 HTTP。无论他们请求什么,我都希望通过 HTTPS 提供服务器。

我已经尝试将其添加到我的 .htaccess 文件中:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

但这只会导致重定向循环。我猜 RewriteCond 没有按预期运行?

最佳答案

这应该有效:

RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [NE,NC,R,L]

关于apache - http 到 https 导致重定向循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31523212/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com