神马搜索向优质网站开放结构化数据提交功能。符合质量要求的网站,根据神马的数据需求将需要的网页字段数据提交给神马搜索,神马搜索在搜索结果中按既定模板展现,提升网站在搜索结果中的体验,帮助站长获得更多的搜索流量。
神马搜索目前支持文档、自媒体、视频、资讯、论坛、问答等内容类型的数据,后续会逐步开放更多类型的数据。
开放数据的格式:
结构化数据支持以xml文件及索引型xml格式提交,其中限定索引型xml最多不超过三层,每层的item不超过1000个。
1.顶层xml格式
<sitemapindex>
<sitemap>
<loc>
http://www.abc.com/structure/index_1.xml
</loc>
<lastmod>2013-12-18 12:59:12</lastmod>
</sitemap>
<sitemap>
<loc>
http://www.abc.com/structure/index_2.xml
</loc>
<lastmod>2013-12-18 12:59:13</lastmod>
</sitemap>
</sitemapindex>
2.中间层xml格式(非必要,视数据量而定)
<sitemapindex>
<sitemap>
<loc>
http://www.abc.com/structure/index_1/1.xml
</loc>
<lastmod>2013-12-18 12:59:12</lastmod>
</sitemap>
</sitemapindex>
3.数据层xml格式
不同网页类型的字段要求不同,此处仅列出通用字段
<?xml version="1.0" encoding="utf-8"?>
<document>
<webName>![CDATA[您的网站名(如淘宝网)]]</pwebName>
<hostName>![CDATA[网站主机名]]</hostName>
<datalist>
<item>
<url>![CDATA[http://www.domain.com/p-657298480.html]]</url>
<title>![CDATA[网页标题]]</title>
<publishdate><![CDATA[2013-05-24]]></publishdate>
<tags><![CDATA[网页核心关键字]]></tags>
</item>
<--n组item-->
</datalist>
</document>