我正在尝试使用超链接离开我正在构建的Django应用程序。 我通过另一个Stackoverflow页面找到的是:
<a href="google.com">Google</a> doesn't work, but
<a href="https://google.com">Google</a> does break the link from the site.
我上面的问题是我试图获得的某些链接在与https://链接时不起作用。是否有不同的方法来设置超链接以链接到我的应用程序之外而不需要https://?
答案 0 :(得分:0)
这与django无关。它是纯HTML。有三种方法可以访问其他页面:
<a href="https://google.com">Google</a>
- 这将针对ssl http协议
<a href="http://google.com">Google</a>
- 这将针对标准的http协议
<a href="//google.com">Google</a>
- 这将使用与您的网站使用相同的协议(如果您的服务器为https
,它将定位https://google.com
,如果您的服务器为http
,它将定位http://google.com
)