sitemap的详细用法和需求解析

Sitemap 标准化

1.建立www.xxxxx.cn/sitemap/goods.xml  将所有产品详情页url放入文件中  (每天凌晨 空闲的时间更新一次 )

2.建立www.xxxxx.cn/sitemap/list.xml  将一二级分类页url放入文件中     (每一个月 凌晨 空闲的时间更新一次)

3.建立www.xxxxx.cn/sitemap/shop.xml  将所有商家首页url放入文件中 (每一个月 凌晨 空闲的时间更新一次)

4.建立总的sitemap索引文件,www.xxxxx.cn/sitemap/index.xml 将以上sitemap文件完整url 路径放入文件中。

sitemap注意事项:每个sitemap文件最多包含50,000个网址且需小于10MB,建议4万个url放一个xml文件,超出部分启用第二个xml文件,如goods数量为7万,则将前4万个url放入goods.xml中,后面3万个url放入goods2.xml中

-----------------------------------------------------------------------------------------------------------

goods.xml 产品详情页

lastmod 取值 产品最后修改日期     changefreq 取值 daily       priority取值0.9

list.xml 分类列表页

lastmod 取值 今天的日期     changefreq 取值 daily       priority取值0.8

shop.xml 商家店铺页

lastmod 取值 今天的日期     changefreq 取值 daily       priority取值0.7

-----------------------------------------------------------------------------------------------------------

pc-sitemap 标准

-----------------------------------------------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>

<urlset>

<url>

<loc>http://www.yoursite.com/yoursite.html</loc>

<lastmod>2016-12-20</lastmod>

<changefreq>daily</changefreq>

<priority>0.8</priority>

</url>

<url>

<loc>http://www.yoursite.com/yoursite2.html</loc>

<lastmod>2016-12-20</lastmod>

<changefreq>daily</changefreq>

<priority>0.8</priority>

</url>

</urlset>

--------------------------------------------------------------------------------------------------------------------

pc-sitemap 索引文件 标准   直接复制以下 内容 到 index.xml 文件即可

---------------------------------------------------------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>

<sitemapindex>

<sitemap>

<loc>www.xxxxx.cn/sitemap/goods.xml</loc>

</sitemap>

<sitemap>

<loc>www.xxxxx.cn/sitemap/list.xml</loc>

</sitemap>

<sitemap>

<loc>www.xxxxx.cn/sitemap/shop.xml</loc>

</sitemap>

</sitemapindex>

---------------------------------------------------------------------------------------------------------------------------

参考资料:http://zhanzhang.baidu.com/college/courseinfo?id=267&page=2

---------------------------------------------------------------------------------------------------------------------------

以下移动端暂时不做

---------------------------------------------------------------------------------------------------------------------------

wap-sitemap 标准

<?xml version="1.0" encoding="UTF-8" ?>

<urlsetxmlns="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://m.example.com/index.html</loc>

<mobile:mobile type="mobile"/>

<lastmod>2009-12-14</lastmod>

<changefreq>daily</changefreq>

<priority>0.8</priority>

</url>

</urlset>

wap-sitemap文件命名规则同pc相同。

wap-sitemap 索引文件 标准

<?xml version="1.0" encoding="utf-8"?>

<urlsetxmlns="http://www.sitemaps.org/schemas/sitemap/0.9"

xmlns:mobile="http://www.baidu.com/schemas/sitemap-mobile/1/">

<url>

<sitemapindex>

<sitemap>

<loc>www.xxxxx.cn/sitemap/goods.xml</loc>

</sitemap>

<sitemap>

<loc>www.xxxxx.cn/sitemap/list.xml</loc>

</sitemap>

<sitemap>

<loc>www.xxxxx.cn/sitemap/shop.xml</loc>

</sitemap>

</sitemapindex>

(0)

相关推荐