每当我尝试更改链接(图像,文本等)将路由到的链接时,它总是会添加到根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;
}
为什么会这样做?
答案 0 :(得分:-2)
在http://
属性中的域之前添加https://
或href
。
<a href="https://google.com">Link text</a>
您也可以在适当的时候使用协议相对网址。这些将自动解释为使用当前用于查看页面的相同协议。
<a href="//example.com/sample.jpg">Link text</a>
(当链接到http://
和https://
协议上可用的第三方资源时,此功能非常有用。)