0

我的网站在这里:www.drizly.com

我们的 favicon 出现在 Firefox 中,但没有出现在 Chrome 中……我已经阅读并尝试了所有内容,好吧,显然不是所有内容。我不明白。有人可以帮忙吗?

4

2 回答 2

0

尝试使用rel="shortcut icon"您的网站图标的绝对 URL。

例子:

<link rel="shortcut icon" href="http://example.com/favicon.ico" /> 
于 2013-09-24T22:32:21.077 回答
0

你有错误的 html 结构,你缺少 open tag <html>

现在我明白了:

<DOCTYPE! html>
<head>
...
</head>
<body>
...
</body>
</html>

Chrome 将其解释为:

<html>
<head>
</head>
<body>
<doctype! html="">

    <title>Drizly | Alcohol Delivery, Boston MA.</title>
    <link rel="shortcut icon" href="http://drizly.com/img/favicon.ico">
    ...
</body>
</html>
于 2013-09-25T02:30:39.730 回答