gpt4 book ai didi

.htaccess - 我想使用 .htaccess 从 https 上的 url 中删除 www

转载 作者:行者123 更新时间:2023-12-02 18:04:38 24 4
gpt4 key购买 nike

我想通过 .htaccess 从 https 网址中删除 www。例如

我想改变

https://www.example.com/至 https://example.com/

我尝试了很多规则

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

RewriteCond %{SERVER_PORT} ^443
RewriteCond %{HTTP_HOST} ^www\.
RewriteRule (.*) https://example.com$1 [L,R,QSA]

RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

但是没有任何作用。请帮助我

最佳答案

尝试:


RewriteCond %{HTTP_HOST} ^www\.(.+)
RewriteCond %{HTTPS}s/%1 ^(on(s)|offs)/(.+)
RewriteRule ^ http%2://%3%{REQUEST_URI} [L,R=301]

关于.htaccess - 我想使用 .htaccess 从 https 上的 url 中删除 www,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9510893/

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