在具有SSL的站点上链接到没有SSL的站点

I have SSL installed on one of my website, and I'm trying to place a link on the website linking to another of my website that does not have SSL installed. But when clicking on the link, it redirected me to a page that said something like "Your connection is not private. Attackers might be trying to steal your information." Is there any way to override this somehow?

test.php

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

^---this is linking to the site without SSL installed.

Result:

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

Need Result:

Actual website displaying.

Try the full URL:

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

You're using a protocol-relative URL, which points to that site with HTTPS (since that's the protocol of the page with the link).

Add http: to explicitly make the link point to the non-SSL URL.