在具有SSL

时间:2016-01-03 19:31:19

标签: php ssl hyperlink connection

我在我的某个网站上安装了SSL,并且我正在尝试在链接到我未安装SSL的其他网站的网站上放置链接。但是当点击链接时,它会将我重定向到一个页面,上面写着“您的连接不是私密的。攻击者可能会试图窃取您的信息。”有什么方法可以以某种方式覆盖它吗?

test.php

<a href = "//www.nossl.com"> wwww.nossl.com </a>

^ ---这是链接到没有安装SSL的网站。

结果:

Your connection is not private. Attackers might be trying to steal your information.

需要结果:

Actual website displaying.

2 个答案:

答案 0 :(得分:6)

您正在使用协议相对URL,该URL使用HTTPS指向该网站(因为这是带有链接的页面的协议)。

添加MyGlyph以明确指向链接指向非SSL网址。

答案 1 :(得分:2)

尝试完整网址:

<a href = "http://www.nossl.com"> www.nossl.com </a>