gpt4 book ai didi

apache - 从 https 重写为 http

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:20:36 24 4
gpt4 key购买 nike

我在一台 Apache 服务器上有 5 个站点。其中一个站点使用 SSL。因此,当使用 https 访问其他站点时,它们将被重定向到不正确的 SSL 站点。

例如

https://x.com (with SSL)

http://y.com (normal site no SSL)

If I access https://y.com then I get the content from x.com. How can I fix so https://y.com just gets rewritten to http://y.com?

最佳答案

在你的 .htaccess 中放置:

RewriteCond %{HTTPS} on [NC]
RewriteRule ^(.*)$ http://y.com/$1 [R=301,L]

关于apache - 从 https 重写为 http,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3179454/

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