|
百度推出了移动Sitemap协议,用于将网址提交给移动搜索收录。百度移动Sitemap协议是在标准Sitemap协议基础上制定的,增加了<mobile:mobile/>标签,它有四种取值:
- <mobile:mobile/> :移动网页
- <mobile:mobile type="mobile"/> :移动网页
- <mobile:mobile type="pc,mobile"/>:自适应网页
- <mobile:mobile type="htmladapt"/>:代码适配
复制代码 无该上述标签表示为PC网页
示例:
- <mobile:mobile type="mobile"/> :移动网页
- 提交移动网页的sitemap协议写法:
- <?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.abc.com/index.html</loc>
- <mobile:mobiletype="mobile"/>
- <lastmod>2009-12-14</lastmod>
- <changefreq>daily</changefreq>
- <priority>0.8</priority>
- </url>
- </urlset>
复制代码- <mobile:mobile type="pc,mobile"/>:自适应网页
- 提交自适应网页的sitemap协议写法:
- <?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://www.abc.com/autoadapt.html</loc>
- <mobile:mobiletype="pc,mobile"/>
- <lastmod>2009-12-14</lastmod>
- <changefreq>daily</changefreq>
- <priority>0.8</priority>
- </url>
- </urlset>
复制代码- <mobile:mobile type="htmladapt"/>:代码适配
- 提交代码适配网页的sitemap协议写法:
- <?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://www.abc.com/htmladapt.html</loc>
- <mobile:mobiletype="htmladapt"/>
- <lastmod>2009-12-14</lastmod>
- <changefreq>daily</changefreq>
- <priority>0.8</priority>
- </url>
- </urlset>
复制代码
Sitemap的作用:
1、提交Sitemap给搜索引擎做为一个引导作用,方便搜索引擎索引网站。
2、搜索引擎通过Sitemap更清晰了解网站内部链接层次和结构,提高网站内容收录。
3、通过Sitemap提供网站的其他信息,比如上次更新日期、Sitemap文件的更新频率等,给百度蜘蛛作为参考。 |
|