Mobile app version of vmapp.org
Login or Join
Ogunnowo487

: Remap an xml feed to the address of a wordpress rss feed I used to have a blog based on Wordpress and moved to one based on Jekyll. I can create a new feed in Jekyll by building an

@Ogunnowo487

Posted in: #Jekyll #Rss #Wordpress

I used to have a blog based on Wordpress and moved to one based on Jekyll. I can create a new feed in Jekyll by building an atom page in XML with a bit of Liquid code, like this

The trouble is, the location of the new feed is carlboettiger.info/atom.xml, while the old feed from the wordpress site is carlboettiger.info/feed, with no extension. how can I configure the Jekyll-created feed such that followers who have pointed their readers to the old feed address from wordpress will start to get the new content?

(Site's Jekyll source here)

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ogunnowo487

1 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

Almost all feed readers will follow redirects when fetching feeds. You should be able modify your .htaccess file to redirect the old url to the new.

Redirect 301 /feed carlboettiger.info/atom.xml

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme