gpt4 book ai didi

wordpress - WordPress 多站点上的 SSL - 仅一个站点

转载 作者:太空宇宙 更新时间:2023-11-03 14:06:23 25 4
gpt4 key购买 nike

我在 WordPress 多站点的主站点上设置了 SSL 站点。我在访问子域网站时遇到问题,因为它没有 SSL(也不需要它),但 wordpress 正在重定向到 https://

这是我的 htaccess 代码:

# BEGIN rlrssslReallySimpleSSL rsssl_version[2.4.1]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL`enter code here`

我已经尝试了这篇文章的建议,但它对我不起作用:

https://really-simple-ssl.com/knowledge-base/preventing-subdomains-add-domains-getting-forced-https/

谢谢!

最佳答案

在你的行之后

RewriteCond %{HTTPS} !=on [NC]

您需要添加条件以限制重定向到 https 的域,方法是添加条件,例如

RewriteCond "%{REMOTE_HOST}"  "^host1"  [OR]
RewriteCond "%{REMOTE_HOST}" "^www.host1" [OR]
RewriteCond "%{REMOTE_HOST}" "^host2"

添加多个域时,您需要添加 [OR] 来匹配行或下一行,而不是尝试同时匹配它们。 There is more information about the configuration of RewriteCond in the Apache HTTP Server documentation

关于wordpress - WordPress 多站点上的 SSL - 仅一个站点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40879933/

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