gpt4 book ai didi

.htaccess - 重定向 http 以更正 https

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

我有一个问题。我的 Joomla 安装确保所有传输都通过 https 而不是 http。要将所有 http 重写为 https,我在 .htaccess 中使用下面的重写条件。这很好用,但是当我转到一个页面时,例如:http://domainname.com/page它重定向到 https://domainname.com/index.php .我想让它做的是重定向 http://domainname.com/pagehttps://domainname.com/page . “www”也是如此。你能帮我正确的重定向吗?

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

最佳答案

RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

这应该可以强制所有的 https://www .{HOST}

关于.htaccess - 重定向 http 以更正 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41631266/

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