gpt4 book ai didi

apache - http 到 https 与 www 一起重定向到 htaccess 中的非 www

转载 作者:行者123 更新时间:2023-12-01 13:47:20 24 4
gpt4 key购买 nike

我正在尝试同时将我的网站从 http 重定向到 https 以及从 www 重定向到非 www。此代码来自 Andron here工作但有一些小故障。我稍微调整了一下,并将所有内容从非 https 重定向到 https。

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

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

对于以下情况,重定向可以正常工作并重定向到 non-www https 版本:

domain.com
www.domain.com
www.domain.com/page

但是,当我输入 domain.com/pagehttp://domain.com/page 时,我只看到 non-secure http non -www 版本。

如何确保所有 URL 都重定向到网站的 secure https non-www 版本?

最佳答案

这是一个在单个规则中同时删除 http->httpswww 的规则:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^www\. [NC,OR]
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [R=301,L,NE]

出于 SEO 目的,最好避免多次重定向。

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

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