Hexo优化1

1. Hexo 安装 sitemap 插件

谷歌 sitemap

1
npm install hexo-generator-sitemap --save

百度 sitemap

1
npm install hexo-generator-baidu-sitemap --save 

2. 配置 sitemap.xml 路径

_config.yml

1
2
3
4
5
# 自动生成sitemap
sitemap:
path: sitemap.xml
baidusitemap:
path: baidusitemap.xml

3. 生成 sitemap.xml

1
2
hexo clean
hexo generate