gpt4 book ai didi

.htaccess - 如何将我的博客 http ://subdomain. example.com 重定向到 https://

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

用于将我的子域 http: 重定向到 https:

我在 .htaccess 文件中使用了下面的代码,但没有用。

RewriteEngine on

RewriteCond %{HTTP_HOST} ^subdomain\.example\.com$ [NC]
RewriteRule ^$ https://subdomain.example.com/ [R=301,NE,NC,L]

此外,我已经将 WordPress 站点 URL 中的 http 更改为 https,但仍然无法正常工作。

请指导我如何修复它。

最佳答案

RewriteCond %{HTTP_HOST}  ^subdomain\.example\.com$ [NC]
RewriteRule ^$ https://subdomain.example.com/ [R=301,NE,NC,L]

这只是检查主机,而不是 SSL 状态(即 HTTP 或 HTTPS)。这也只会重定向站点根目录,并会导致重定向循环。

请尝试以下操作。这将需要在 .htaccess 中的现有 (WordPress) 指令之前:

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

测试前您需要清除浏览器缓存。

关于.htaccess - 如何将我的博客 http ://subdomain. example.com 重定向到 https://,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45279220/

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