Hi, I’m in the process of migrating from Ghost to Hugo. On Ghost my RSS feed is on the route /rss/ without any file name or extension. I’d like to not break my RSS feed in the migration but can’t figure out how to get RSS to render in hugo with that URL.
I’ve tried creating the file /content/rss/_index.md with
And then in my theme having a /layouts/rss/section.xml file (I’ve also tried with single.xml, list.xml, and rss.xml) to render.
I’ve also tried adding an output format in my config.toml:
[outputs]
rss = ["RSS"]
But the best result I’ve got is the /rss/ route rendering html in my site layout. I’ve got the RSS feed working on /index.xml but that’s not what I want. I don’t see a way to add a folder level redirect either.