SiteMap.xml 101 (基础知识及标准格式)
Sitemap是一种SEO工具, 准确的说它是一种链接列表, 包含着站内所有页面的链接和相关属性. 它的主要作用是告诉搜索引擎我们站内有哪些页面可以抓取, 哪些页面比较重要, 更新频率是怎么样的, 搜索引擎一般只能通过页面分析来做找到网站上的链接, 但是这样的做法不但效率底下而且准确率不高, 一般很难达到80%以上的页面覆盖.
所以我们需要使用sitemap.xml文件, 来把这部分工作变得容易, 快速和高效.
{SiteMap.xml 标准格式}
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>http://yiilib.com/</loc>
<lastmod>2016-05-03</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<url>
...
</url>
...
</urlset>
{SiteMap.xml 标准格式参数说明}
类型 | 优先级 | 说明 |
---|---|---|
<?xml> | 必选 | xml 头部申明 |
<urlset> | 必选 | sitemap相关标准申明 |
<url> | 必选 | 代表一个页面链接 |
url.loc | 必选 | 页面链接地址 |
url.lastmod | 可选 | 页面最后更新时间, 格式为2016-05-10, 2016-05-10T17:33:30+08:00, 推荐使用前者 |
url.changefreq | 可选 | 页面更新频率, 可用值: always、hourly、daily、weekly、monthly、yearly、never |
url.priority | 可选 | 页面优先级, 相对于sitemap内其他页面, 可用值 0.0-1.0 |
留言