【问题标题】:How to show my website favicon in Bing's search engine?如何在 Bing 的搜索引擎中显示我的网站图标?
【发布时间】:2020-10-25 16:45:35
【问题描述】:
这是Bing搜索引擎的截图:
大多数网站的网站图标都位于其网站标题链接的左侧。 (如红色圆圈)但我的网站在 Bing 搜索引擎中显示的是灰色地球图标,而不是我网站的图标。我确定我的网站有favicon.ico(它放在根目录中),我也确定我已经在<head>...</head>标签中添加了这段代码:
<link rel="shortcut icon" href="favicon.ico">
但还是像这样:
那么有谁知道如何在 Bing 搜索引擎中显示我网站的图标?
【问题讨论】:
标签:
html
seo
favicon
bing
【解决方案1】:
如果使用这个:
Normal favicon:
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
PNG/GIF 图标:
<link rel="icon" type="image/gif" href="favicon.gif" />
<link rel="icon" type="image/png" href="favicon.png" />
in the <head> Tag.
如果这不起作用,请尝试清除 Bing 上的缓存。
如果网站图标没有上传到网络服务器,有时它也不会加载,所以请考虑一下。