gpt4 book ai didi

Laravel .htaccess 与强制 HTTPS

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

我在托管 Laravel 网站的根目录中使用这个 .htaccess 文件,因此访问者在 URL 地址中看不到/public/:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^my-domain.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.my-domain.com$
RewriteCond %{REQUEST_URI} !public/
RewriteRule (.*) /public/$1 [L]

但到目前为止,我找不到添加强制 HTTPS 重定向的简单解决方案。有什么建议吗?

最佳答案

使用 .htaccess 强制域使用 https

RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=302,L,NE]

关于Laravel .htaccess 与强制 HTTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50924381/

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