发布日期:2016-03-08 23:27:45

一个简单的sitemap的例子说明一下sitemap的格式:

www.sitemaps.org 定义了下面的格式,一些搜索引擎有自己的sitemap格式,不过大体一致。

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

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

   <url>

      <loc>http://www.example.com/</loc>

      <lastmod>2005-01-01</lastmod>

      <changefreq>monthly</changefreq>

      <priority>0.8</priority>

   </url>

</urlset> 

上面例子源于http://www.sitemaps.org/protocol.html 

有了sitemap后,还需要将它放在网站目录中,然后通知搜索引擎来访问它。有几种方式:

1. 在robots.txt中指定sitemap地址

Sitemap: http://www.example.com/sitemap.xml

2. 通过搜索引擎提供的sitemap提交页面提供

3. 通过http请求提交sitemap

<searchengine_URL>/ping?sitemap=http://www.example.com/sitemap.gz

 

发表评论