generate wrong RSS URL
tsubasaxZZZ opened this issue · 4 comments
tsubasaxZZZ commented
When access from RSS reader to blog post, it show 404.
It looks like wrong RSS URL in atom.xml.
https://jpaztech.github.io/blog/atom.xml
actual:
https://jpaztech.github.io/network/appgw-troubleshooting-cert
expected:
https://jpaztech.github.io/blog/network/appgw-troubleshooting-cert/
juyamagu commented
hexo-generator-feed
は hexo の url
と root
を考慮して feed を生成するようです。
const urlConfigSubfolder = {
// subdirectory configuration as per hexo documentation
url: 'http://localhost/blog',
root: '/blog/'
};
なので、_config.yml
で以下の修正が必要と考えられます。
Line 36 in 7d431cf
- url: https://jpaztech.github.io
+ url: https://jpaztech.github.io/blog
+ root: /blog/
juyamagu commented
@kiki-kekat どう思いますか?
kiki-kekat commented
url: https://jpaztech.github.io/blog/
こうですかね。
皆さまありがとうございます。
juyamagu commented