1. 程式人生 > >sitemap.xml格式例項說明

sitemap.xml格式例項說明

<?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>
        <!--可以不提交該標籤,用這個標籤告訴此連結可能會出現的更新頻率:always ,hourly ,daily ,weekly ,monthly ,yearly ,never  -->
        <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>​

實際例項程式碼:

 檔名稱:m_sitemap.xml

檔案內容:

<?xml version="1.0" encoding="UTF-8"?>
<urlset>	
	<url>
		<loc>http://m.dc919.cn</loc>
		<priority>1.00</priority>
		<lastmod>2018-07-25</lastmod>
		<changefreq>weekly</changefreq>
	</url>
	<url>
		<loc>http://m.dc919.cn/product_86_1.html</loc>
		<priority>0.5</priority>
		<lastmod>2018-07-25</lastmod>
		<changefreq>weekly</changefreq>
	</url>
	<url>
		<loc>http://m.dc919.cn/product_detail_360.html</loc>
		<priority>0.5</priority>
		<lastmod>2018-07-25</lastmod>
		<changefreq>weekly</changefreq>
	</url>
	<url>
		<loc>http://m.dc919.cn/product_81.html</loc>
		<priority>0.5</priority>
		<lastmod>2018-07-25</lastmod>
		<changefreq>weekly</changefreq>
	</url>
	<url>
		<loc>http://m.dc919.cn/product_58.html</loc>
		<priority>0.5</priority>
		<lastmod>2018-07-25</lastmod>
		<changefreq>weekly</changefreq>
	</url>
	<url>
		<loc>http://m.dc919.cn/news_detail_270.html</loc>
		<priority>0.5</priority>
		<lastmod>2018-07-25</lastmod>
		<changefreq>weekly</changefreq>
	</url>
	<url>
		<loc>http://m.dc919.cn/product_66.html</loc>
		<priority>0.5</priority>
		<lastmod>2018-07-25</lastmod>
		<changefreq>weekly</changefreq>
	</url>
</urlset>

說明: