从 https 重写为 http
我在一台 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 sohttps://y.com
just gets rewritten tohttp://y.com
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 .htaccess 中放置:
In your .htaccess put:
您可以在 apache 配置文件中定义它。您必须为从 https 端口传入的连接添加规则。
如果您使用的是 Linux,那么您可能在
/etc/apache2/sites-available/default-ssl
中有此配置。如果您没有此文件,则必须搜索 https 虚拟主机:
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: