从<a href="/..."> and </a> <a href=".."></a>获取完整路径

时间:2014-12-08 17:59:45

标签: html href

从解析多个网站开始,似乎在链接的开头有一个“/”,它指向的位置与没有位置不同。例如, URL =“http://www.google.com/a/b/c/index.html”      <a href = "/location1.html">会链接到“http://www.google.com/location1.html”,基本上是(域+链接)。和 <a href = "location2.html">会链接到“http://www.google.com/a/b/c/location2.html”。

我的理解是否正确?

1 个答案:

答案 0 :(得分:0)

这些是相对路径:

如果您的域名为http://google.com

然后你可以这样做:

/location1.html

/location2.html

这将指向:http://google.com/location1.html

但由于您可能不拥有该域名以便链接到google.com,因此您需要包含绝对路径:

http://www.google.com/a/b/c/location1.html