越来越多的人开始注意到网站源代码中的链接以两个斜杠开头。例如:
<a href="//example.com/1.png">Image</a>
为什么会这样?
答案 0 :(得分:38)
这是protocol-relative URL(通常是HTTP或HTTPS)。因此,如果我在http://example.org
并且我将{(1)包含图片,文字等链接到//example.com/1.png
,则会转到http://example.com/1.png
。如果我在https://example.org
,则会转到https://example.com/1.png
。
这可以让您轻松避免混合内容安全错误。