Favicon 不显示在 Webkit 浏览器上

发布于 2024-09-06 01:45:59 字数 255 浏览 10 评论 0原文

我在网站上放置网站图标时遇到问题。

我有这段代码

<link rel="shortcut icon" type="image/ico" href="img/favicon.ico">

,由于某种原因,Firefox 可以很好地显示 favicon,但在 Webkit 浏览器上它没有显示。我在 Mac 上尝试了 Google Chrome 和 Safari,但没有显示;我需要为这些浏览器做些什么吗?

I'm having problems with putting a favicon on my website.

I have this code

<link rel="shortcut icon" type="image/ico" href="img/favicon.ico">

And for some reason Firefox shows the favicon fine, but on Webkit browsers its not showing up. I tried Google Chrome and Safari on a Mac and its not showing up; do I need to do something for these browsers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

带上头具痛哭 2024-09-13 01:45:59

尝试放置相对路径并将类型更改为“image/x-icon”:

<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico" />

或者将其放在根目录上:

<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />

Try placing a relative path and change the type to "image/x-icon":

<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico" />

Or just place it on the root:

<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文