gpt4 book ai didi

.htaccess - 将非 www 重定向到 https 的 www

转载 作者:行者123 更新时间:2023-12-02 22:56:48 24 4
gpt4 key购买 nike

我有以下重定向

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

如何将非 WWW https 重定向到 WWW?

htaccess 位于 public_html 文件夹中

最佳答案

您可以使用以下内容:

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

这将重定向

关于.htaccess - 将非 www 重定向到 https 的 www,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37241057/

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