gpt4 book ai didi

.htaccess - https 通过 htaccess 更改文档根目录

转载 作者:太空宇宙 更新时间:2023-11-03 15:05:52 26 4
gpt4 key购买 nike

我正在使用这个代码

RewriteCond %{HTTP_HOST} ^(www.)?domain.com$
RewriteCond %{REQUEST_URI} !^/public/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /public/$1
RewriteCond %{HTTP_HOST} ^(www.)?domain.com$
RewriteRule ^(/)?$ public/index.php [L]

它在 httpdocs 文件夹中工作正常,但现在我们将其更改为 httpsdocs,因为我们希望我们的整个站点都经过 SSL 加密并且它不再工作了。关于修复它的任何想法?谢谢

最佳答案

这会将任何非 HTTPS 请求转换为 HTTPS

RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

即。如果你输入 http://domain.com它将变成https://domain.com - 仍应与上述内容一起使用:)

关于.htaccess - https 通过 htaccess 更改文档根目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9250286/

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