gpt4 book ai didi

google-news - 测试谷歌新闻站点地图?

转载 作者:行者123 更新时间:2023-12-04 11:35:55 32 4
gpt4 key购买 nike

如何测试/验证我的 Google 新闻站点地图?

如果我去搜索控制台,我可以选择添加/测试站点地图。但是它说我有一个无效的 XML 标签:

父标签:出版物
标签:关键词

但我可以看到这个标签是有效的,所以我认为验证器正在测试它作为一个普通的站点地图,而不是一个特定于 googlenews 的站点地图:
https://support.google.com/news/publisher/answer/74288?hl=en#submitsitemap

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9">
<url>
<loc>
http://www.website.com/page
</loc>
<news:news>
<news:publication>
<news:name>Sitename/news:name>
<news:language>en</news:language>
<news:keywords>Shopping</news:keywords>
</news:publication>
<news:title>Page title here</news:title>
<news:publication_date>2015-11-12T14:16:31+00:00</news:publication_date>
</news:news>
</url>
<url>
<loc>
http://www.website.com/other-page
</loc>
<news:news>
<news:publication>
<news:name>Sitename</news:name>
<news:language>en</news:language>
<news:keywords>Shopping</news:keywords>
</news:publication>
<news:title>
Page 2 title here
</news:title>
<news:publication_date>2015-11-12T12:52:03+00:00</news:publication_date>
</news:news>
</url>
<url>

如果我去谷歌的新闻工具主页,它会告诉我该网站包含在谷歌新闻中。但是如何检查我的站点地图是否正常工作?

最佳答案

来自谷歌本身:Validating a News Sitemap

以下 XML 架构定义了可以出现在新闻站点地图文件中的元素和属性。新闻站点地图可以包含特定于新闻的元素和核心站点地图元素。您可以从以下链接下载架构:

对于新闻特定元素: http://www.google.com/schemas/sitemap-news/0.9/sitemap-news.xsd .

对于核心站点地图元素: http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd

有许多工具可帮助您根据这些架构验证站点地图的结构。您可以在以下每个位置找到 XML 相关工具的列表:

http://www.w3.org/XML/Schema#Tools
http://www.xml.com/pub/a/2000/12/13/schematools.html

为了根据架构验证您的新闻站点地图文件,XML 文件将需要额外的标题,如下所示:

<?xml version='1.0' encoding='UTF-8'?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
http://www.google.com/schemas/sitemap-news/0.9
http://www.google.com/schemas/sitemap-news/0.9/sitemap-news.xsd">
<url>
...
</url>
</urlset>

关于google-news - 测试谷歌新闻站点地图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33674760/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com