10
09/2014
hexo 加 feed 和 sitemap
根据 hexo 官方 plugins 说法,安装 feed 生成器,执行
npm install hexo-generator-feed --save
注意:当前目录必须是你 hexo init 的根目录 如 hexo/MYSITE 安装后在,hexo/MYSITE 目录中会出现 node_modules 目录。
安装 sitemap 生成器
npm install hexo-generator-sitemap --save
还需要修改 hexo/MYSITE/_config.yml,注意是根目录的 _config.yml,不是 themes/light/ 目录的那个。
plugins: - hexo-generator-feed - hexo-generator-sitemap
重启服务后,feed 和 sitemap 可见。
http://localhost:4000/atom.xml http://localhost:4000/sitemap.xml