有没有办法在HTML中引用网站的域名而不知道它?

时间:2015-02-14 03:37:41

标签: html

例如,我想要一个链接将观众带到网站上的文件夹

<a href = "http://www.Example.com/goToThisFolder"> Click here to go to this folder </a>

但现在我想做到这一点,以便其他开发人员可以在他们的网站上使用我的代码而无需亲自编辑它。有没有办法让我参考&#34; http://www.Example.com&#34;实际上并不知道域名是什么?

1 个答案:

答案 0 :(得分:0)

如果您只想制作一个相对链接,即相对于当前网址或域名的链接,只需省略该域名:

<a href="foo.html">always goes to foo.html in the same folder as this document</a>
<a href="/foo.html">always goes to /foo.html in the same domain</a>

您也可以使用协议相对 URL:

<a href="//example.com/..">goes to https://.. if current page is https, otherwise http</a>