从 https 重写为 http

发布于 2024-09-08 16:34:40 字数 338 浏览 5 评论 0原文

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

例如

https://x.com(使用 SSL)

http://y.com(普通站点没有 SSL)

如果我访问 https://y.com,那么我会从 x.com 获取内容。我该如何修复才能将 https://y.com 重写为 http://y.com

I have 5 sites on one apache server. One of the sites is with SSL. So when the other sites are accessed with https then they are redirected to the SSL site which is incorrect.

E.g.

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

几味少女 2024-09-15 16:34:40

在您的 .htaccess 中放置:

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

In your .htaccess put:

RewriteCond %{HTTPS} on [NC]
RewriteRule ^(.*)$ http://y.com/$1 [R=301,L]
欢你一世 2024-09-15 16:34:40

您可以在 apache 配置文件中定义它。您必须为从 https 端口传入的连接添加规则。

如果您使用的是 Linux,那么您可能在 /etc/apache2/sites-available/default-ssl 中有此配置。

如果您没有此文件,则必须搜索 https 虚拟主机:

<IfModule mod_ssl.c>
<VirtualHost _default_:443>

You can define it in apache config file. You must add a rule to connection incoming from https port.

If you are using linux, propably you have this config in /etc/apache2/sites-available/default-ssl.

If you don't have this file you must searching https virtualhost:

<IfModule mod_ssl.c>
<VirtualHost _default_:443>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文