Bing 是否允许像 Google 一样使用图像站点地图?

发布于 2024-09-25 02:20:17 字数 502 浏览 5 评论 0原文

Bing 是否允许像 Google 一样在其站点地图中使用图像?

请参阅下面的 Google 示例:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:image="http://www.sitemaps.org/schemas/sitemap-image/1.1">
  <url> 
    <loc>http://www.example.com/foo.html</loc> 
    <image:image>
       <image:loc>http://example.com/image.jpg</image:loc> 
    </image:image>
  </url>
</urlset>

Does Bing allow images in their sitemaps like Google?

Please see the Google example below:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:image="http://www.sitemaps.org/schemas/sitemap-image/1.1">
  <url> 
    <loc>http://www.example.com/foo.html</loc> 
    <image:image>
       <image:loc>http://example.com/image.jpg</image:loc> 
    </image:image>
  </url>
</urlset>

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

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

发布评论

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

评论(1

站稳脚跟 2024-10-02 02:20:17

Google 是目前唯一支持图像站点地图的搜索引擎。其他搜索引擎可能会成功解析这些站点地图,但它们可能会忽略与图像站点地图扩展相关的标签。

请注意,在您的示例中存在错误,这很可能是导致 Bing 解析困难的原因。图片架构中心​​位于 http://www.google.com/schemas/sitemap -image/1.1/

也就是说,您需要将以下位替换

xmlns:image="http://www.sitemaps.org/schemas/sitemap-image/1.1"

xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"

It's Google the only search engine currently which supports Image sitemaps. The other search engines may successfully parse these sitemaps but they will likely ignore the tags related to the Image sitemap extension.

Note that in your example there's an error, and is likely that this is what causes parsing difficulties for Bing. The Image schema hub is located at http://www.google.com/schemas/sitemap-image/1.1/

That is, you need to replace the following bit:

xmlns:image="http://www.sitemaps.org/schemas/sitemap-image/1.1"

with

xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文