850
技術社區[雲棲]
網站XML格式的網站地圖(sitemap)格式
給網站建立一個sitemap.xml的網站地圖有助於搜索引擎對網站的抓取效率,對於很多新手站長來說不知道怎麼建立一個xml格式的網站地圖,本文就將給大家把sitemap地圖的格式貼出來,大家隻需要簡單地套用即可。
sitemap網站地圖格式:
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.sitemaps.org/schemas/sitemap/0.9 https://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="https://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>內容頁麵地址</loc>
<lastmod>發布時間</lastmod>
<changefreq>always</changefreq>
<priority>優先級</priority>
<data><display></display></data>
</url>
</urlset>
sitemap網站地圖套用演示:
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.sitemaps.org/schemas/sitemap/0.9 https://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="https://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.chuanyizhidao.com/</loc>
<lastmod>2017-09-28</lastmod>
<changefreq>always</changefreq>
<priority>0.9</priority>
<data><display></display></data>
</url>
<url>
<loc>https://www.chuanyizhidao.com/nvshidadishan/3401.html</loc>
<lastmod>2017-09-28</lastmod>
<changefreq>always</changefreq>
<priority>0.6</priority>
<data><display></display></data>
</url>
<url>
<loc>https://www.chuanyizhidao.com/nvshiwaitao/3400.html</loc>
<lastmod>2017-09-28</lastmod>
<changefreq>always</changefreq>
<priority>0.6</priority>
<data><display></display></data>
</url>
<url>
<loc>https://www.chuanyizhidao.com/taozhuang/3399.html</loc>
<lastmod>2017-09-28</lastmod>
<changefreq>always</changefreq>
<priority>0.6</priority>
<data><display></display></data>
</url>
</urlset>
最後更新:2017-09-28 20:33:08