Get the magic extension .rss 2 comments Added on 12/05/07 by
Kris
Ever wanted to know how to get an RSS feed with the .rss extension?
It can't just be added because .rss is not a valid MIME type on Apache servers.
Here's how to do it with Apache.
1) Make sure that you have mod_rewrite enabled on your server
2) Create a .htaccess file to put in your html root folder
3) Copy the URL for your .xml or .php feed
4) Add the following two lines to your .htaccess file and place the copied url for your domain
RewriteEngine on
RewriteRule ^feed.rss$ http://www.yourdomain.com/feed.xml
Serious question - why? What benefit (besides looking cool) do you get from this, when there's no standard extension for feeds (.xml, .rdf, .atom, etc.) and lots of FeedBurner feeds with no extension at all?