我对谷歌搜索有一些偏袒的问题。我注意到,我的两个网页都显示在Google搜索中,但是在Google搜索列表的链接旁边没有偏袒,如下所示:
我已经检查过,当我用这个网址查看网页的图标时,它显示的是正确的图标,但在Google搜索中没有显示:https://www.google.com/s2/favicons?domain=example.com
我使用过相同的偏袒标签比其他网页,旁边的其他网页谷歌搜索显示他们的偏爱图标。
下面是我使用的图标标签:
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="favicon.ico">
<meta name="msapplication-TileColor" content="#2d89ef">
<meta name="msapplication-TileImage" content="mstile-150x150.png">
<meta name="theme-color" content="#382d57">
<meta name="msapplication-config" content="browserconfig.xml" />
我使用一个在线网站来生成上面的内容。
发布于 2021-11-15 05:36:41
您指定的图标大小与谷歌相矛盾:
您的图标必须是48 on平方的倍数,例如: 48x48px、96x96px、144x144px等等。SVG文件没有特定的大小。支持任何有效的偏袒格式。Google会将你的图片重放到16x16px,以便在搜索结果中使用,所以要确保它看起来很好。注意:不要提供16x16px图标。
使用尺寸的倍数为48x48。
https://webmasters.stackexchange.com/questions/137519
复制相似问题