Sitemap plugin for Ghost platform
使用sitemap module生成网站地图xml文件. 由于Ghost的App(plugin) API在0.5版本才会发布, 所以 目前本插件是通过对Ghost代码hack实现的, 使用方式不够优美
- 将sitemap.js复制到 Ghost/core/server/下
- 安装sitemap模块 npm install sitemap
- 修改文件 Ghost/core/server/index.js, 搜索
routes.frontend(server);
在后边添加require('./sitemap')(server);
- 重启Ghost
- 访问 http://host/sitemap.xml 查看是否ok
注: 如果在core/server/下没有找到index.js请更新ghost代码
Ghost代码升级步骤
- clone最新代码
- 复制 ./content/ 文件夹过来(数据, 主题, 图片)
- 复制 ./config.js 过来
- 如果网站的ico修改,需要将ico复制过来 ./core/shared/
- 使用Ghost的plugin机制进行开发
- 简单,易用