我的" href"链接将添加到根URL的末尾

时间:2014-07-07 14:14:26

标签: html css

每当我尝试更改链接(图像,文本等)将路由到的链接时,它总是会添加到根URL的末尾。

示例:

<a href="google.com"> will link to root.url\google.com
(root.url is not the actual domain name)

HTML:

 <header class="header">
        <div class="header-inner">
            {{search_in_category}}
        <div class="logo"><a href="google.com"></div>
        </div>
    </header>

CSS:

.logo {
  float: left;
}
.logo a {
  display: inline-block;
  line-height: 130px;
 }
.logo img {
  max-height: 60px;
  vertical-align: middle;
}

为什么会这样做?

1 个答案:

答案 0 :(得分:-2)

http://属性中的域之前添加https://href

<a href="https://google.com">Link text</a>

您也可以在适当的时候使用协议相对网址。这些将自动解释为使用当前用于查看页面的相同协议。

<a href="//example.com/sample.jpg">Link text</a>

(当链接到http://https://协议上可用的第三方资源时,此功能非常有用。)