超链接基础链接

时间:2017-04-04 23:40:41

标签: html hyperlink href

我有一个我想要的链接 something.com/one/two
我尝试做以下

<a href = "one/two">Link</a>

点击something.com后,点击something.com/one/two后会转到something.com/one,然后转到something.com/one/one/two。 有没有办法指定一个a href,以便它可以转到something.com/one/two?我不希望href成为something.com/one/two

1 个答案:

答案 0 :(得分:2)

在开头添加正斜杠,使其从根开始:

<a href="/one/two">Link</a>