另一个图标在 IE 中不工作
我已通读并尝试了所有已发布的网站图标修复。 包括:
- 刷新缓存
- 使用可在其他网站上使用的不同图标
- 使用图标生成网站
- 使用 Photoshop 图标插件
- 使用绝对路径
- 使用相对路径
在所有其他浏览器中都可以正常工作。 我在 Mac 上通过 Parallels 在 Vista 中使用 IE8。
它位于 Moodle 网站上,我没有更改该图标的默认 Moodle 代码:
<link rel="shortcut icon" href="<?php echo $CFG->themewww .'/'. current_theme() ?>/favicon.ico" />
该网站位于: http://www.olvarwood.com.au/olvarwoodonline/
Favicon 路径位于:http://www.olvarwood.com.au/olvarwoodonline/theme/olvar-wood/favicon.ico
有什么想法吗?
I've read through and tried all the favicon fixes already posted. Including:
- Refreshing the cache
- Using a different favicon that works on other websites
- Using a favicon generating website
- Using a Photoshop favicon plugin
- Using an absolute path
- Using a relative path
It works fine in all the other browsers. I'm using IE8 in Vista via Parallels on a Mac.
It's on a Moodle website and I have not altered the default Moodle code for the favicon:
<link rel="shortcut icon" href="<?php echo $CFG->themewww .'/'. current_theme() ?>/favicon.ico" />
The site is here: http://www.olvarwood.com.au/olvarwoodonline/
Favicon path is here: http://www.olvarwood.com.au/olvarwoodonline/theme/olvar-wood/favicon.ico
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
网站图标是很有趣的东西。 我相信它们的缓存方式可能与普通的网络内容不同。
这可能是因为浏览器(以及其他东西)经常为他们访问的每个网站请求
favicon.ico
。我的网站图标不起作用,几个小时后又奇迹般地出现了。
抱歉,如果这没有多大帮助,请尝试等待:)
favicons are funny things. I believe they may be cached differently to normal web content.
This may be because browsers (as well as other things) often request
favicon.ico
for every site they go to.I've had favicons not working, and then miraculously appear several hours later.
Sorry if this isn't much help, but try waiting it out :)
它适用于我的 IE7。 所以它一定是IE8特有的。 我唯一建议测试的是添加:
在您的链接图标元素中。
It works on my IE7. So it must be specific to IE8. The only thing I could suggest testing is to add:
in your link favicon element.