优化hexo

添加RSS

1.安装RSS插件到本地

1
$ sudo npm install hexo-generator-feed --save

2.在./themes/freemind/_config.yml中编辑
在menu下增加:

1
2
3
- title: RSS
url: atom.xml
icon: "fa fa-rss"

在rss:后面加入/atom.xml

1
rss: /atom.xml

3.在hexo/_config.yml中添加插件

1
2
plugins:
- hexo-generator-feed

添加sitemap

1.安装RSS插件到本地

1
$ sudo npm install hexo-generator-feed --save

2.在hexo/_config.yml中添加插件

1
2
plugins:
- hexo-generator-sitemap

访问freesouls.github.io/sitemap.xml就可以看到
3.还可以自己主动添加sitemap到google和baidu
教程链接

其他教程

1.这个比较详细
2.这个也比较好
3
4