EKsumic's Blog

let today = new Beginning();

Click the left button to use the catalog.

OR

如何手写Sitemap

基本结构:

<?xml version="1.0" encoding="utf-8"?>
<urlset>
<url>
    <loc></loc>    
    <lastmod></lastmod>
    <changefreq></changefreq>
    <priority></priority>
</url>
</urlset>

具体例子可以参考:
https://www.v2know.com/sitemap
loc是必填项,填写网址。
lastmod表示最后修改时间,必须是ISO-8601时间格式,如2020-04-20。
priority用来指定网址的权重,可选范围0.0-1.0。一般来讲,网站首页使用1.0的权重,二级三级页面依次降低。

网站地图最好是自动更新的,每当提交了文章或修改了页面,应当从数据库自动更新。

提交的话,只要提交一次就是。

但是后续地爬虫会去参照Sitemap进行爬取。

按照搜索引擎要求,每天更新一次。
 

This article was last edited at 2020-07-05 12:45:15

* *