gpt4 book ai didi

linux - 将 http 非 www 转移到 http www,并将 https 非 www 转移到 https www

转载 作者:太空宇宙 更新时间:2023-11-04 12:46:14 27 4
gpt4 key购买 nike

下面的 htaccess 命令将所有非 www 转移到 http www

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

如何使用各自的 http/https 将非 www 转移到 www?

最佳答案

我使用了以下代码:

重写引擎开启

RewriteCond %{HTTP_HOST} !^www.

RewriteCond %{HTTPS} 关闭 [或]

RewriteCond %{HTTPS}:s on:(s)

重写规则 ^(.*)$ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

关于linux - 将 http 非 www 转移到 http www,并将 https 非 www 转移到 https www,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38641842/

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