Ghost FAQs建议我的幽灵博客RSS订阅源可以在' exampleblog.com/rss'找到。但是,当我尝试导航到' / rss'时,my blog会抛出404。网址。对于我可能出错的地方有任何建议吗?
如果它有用,博客将托管在github页面上。以下是config.js中的生产设置:
// ### Production
// When running Ghost in the wild, use the production environment
// Configure your URL and mail settings here
production: {
url: 'http://markbennett.io',
mail: {
transport: 'SMTP',
options: {
service: 'Mailgun',
auth: {
user: '[removed]', // mailgun username
pass: '[removed]' // mailgun password
}
}
},
database: {
client: 'sqlite3',
connection: {
filename: path.join(__dirname, '/content/data/ghost.db')
},
debug: false
},
server: {
// Host to be passed to node's `net.Server#listen()`
host: '127.0.0.1',
// Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT`
port: '2368'
}
}
答案 0 :(得分:1)
看起来您的RSS位于http://markbennett.io/rss/index.rss。请务必更新模板文件,并确保更新href
中{rs} <link>
标记的<head>
。