hexo 產生 sitemap

Wang wei-hsiang 2023-12-25 10:40:43
Categories: Tags:

今天寫完日誌
想要放到google console search上面供人家搜尋
這時就必須放上sitemap
這可以讓google的爬蟲知道可以過來爬取這份網頁
以下參考github文件
https://github.com/hexojs/hexo-generator-sitemap

hexo-generator-sitemap

Generate sitemap.

Install

1
npm install hexo-generator-sitemap --save 

You can configure this plugin in _config.yml.

1
2
3
4
5
6
7
8
9
sitemap:
path:
- sitemap.xml
- sitemap.txt
template: ./sitemap_template.xml
template_txt: ./sitemap_template.txt
rel: false
tags: true
categories: true

Exclude Posts/Pages

Add sitemap: false to the post/page’s front matter.

1
2
3
4
5
6
7
8
9
sitemap:
path:
- sitemap.xml
- sitemap.txt
template: ./sitemap_template.xml
template_txt: ./sitemap_template.txt
rel: false
tags: true
categories: true