改变创造价值
用户体验至上
云优网络sitemap
<?xml version="1.0" encoding="utf-8"?> <!-- XML 文件需以 utf-8 编码--> <urlset> <!--必填标签--> <url> <!--必填标签,这是具体某一个链接的定义入口,每一条数据都要用<url>和</url>包含在里面,这是必须的 --> <loc>http://www.yoursite.com/yoursite.html</loc> <!--必填,URL 链接地址,长度不得超过 256 字节--> <lastmod>2009-12-14</lastmod> <!--可以不提交该标签,用来指定该链接的最后更新时间--> <changefreq>daily</changefreq> <!--可以不提交该标签,用这个标签告诉此链接可能会出现的更新频率 --> <priority>0.8</priority> <!--可以不提交该标签,用来指定此链接相对于其他链接的优先权比值,此值定于 0.0-1.0 之间--> </url> <url> <loc>http://www.yoursite.com/yoursite2.html</loc> <lastmod>2010-05-01</lastmod> <changefreq>daily</changefreq> <priority>0.8</priority> </url> </urlset>
<url></url>
之间的片断,列明所有 url 地址,打包到一个 xml 文件,向站长平台进行提交。<?xml version="1.0" encoding="utf-8"?> <!-- XML 文件需以 utf-8 编码--> <sitemapindex> <!--必填,以 <sitemapindex> 开始标记作为开始,以 </sitemapindex> 结束标记作为结束--> <sitemap> <!--必填,以<sitemap>标签提交一个子 sitemap 文件--> <loc>http://example.com/ext/xmlsitemap/add/201201/index_20120106.xml</loc> <!--必填,识别 sitemap 的位置--> <lastmod>2009-12-14</lastmod> <!--选填,识别相对 sitemap 文件的修改时间--> </sitemap> <!--必填,标签闭合--> </sitemapindex> <!--必填,标签闭合-->有多个 Sitemap,按上述格式重复
<sitemap></sitemap>
之间的片断,列明所有 Sitemap 地址,向站长平台进行提交。<mobile:mobile/>
:移动网页<mobile:mobile type="mobile"/>
:移动网页<mobile:mobile type="autoadapt"/>
:自适配网页,适用于同一网址页面,会随设备不同改变展现的情况。<?xml version="1.0" encoding="UTF-8" ?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:mobile="http://www.baidu.com/schemas/sitemap-mobile/1/"> <url> <loc>http://m.example.com/index.html</loc> <mobile:mobile type="mobile"/> <lastmod>2009-12-14</lastmod> <changefreq>daily</changefreq> <priority>0.8</priority> </url> <url> <loc>http://www.example.com/index.html</loc> <lastmod>2009-12-14</lastmod> <changefreq>daily</changefreq> <priority>0.8</priority> </url> <url> <loc>http://www.example.com/autoadapt.html</loc> <mobile:mobile type="autoadapt"/> <lastmod>2009-12-14</lastmod> <changefreq>daily</changefreq> <priority>0.8</priority> </url> </urlset>提交 Sitemap 到移动搜索的方法,参考第四条,按照移动 Sitemap 协议做好 Sitemap 后,在 Sitemap 工具点击添加新数据提交,与提交普通 Sitemap 方式一致。