Quick summary (see link above for details):
- Create a URL-alias for rss.xml, name it something like feedburner-feed
- When you register your site with FeedBurner, give it the aliased feed, for example I used http://boodebr.org/feedburner-feed
- Redirect existing feed subscribers by adding this to your site's .htaccess: # redirect feed requests to feedburner
# (see http://www.roguewolves.com/drupal-and-feedburner)
RewriteCond %{HTTP_HOST} boodebr.org
RewriteRule rss.xml http://feeds\.feedburner\.com/boodebr-org [R,L]
RewriteCond %{HTTP_HOST} boodebr.org
RewriteRule node/feed http://feeds\.feedburner\.com/boodebr-org [R,L]
All existing subscribers will be transparently sent to feedburner, as will new subscribers. This redirection magic is really nice if you ever stop using feedburner — just remove the lines from .htaccess, and the feed is back on your site.
Written in WikklyText.

Comments
Drupal FeedBurner module
Just wanted to let anyone reading this know that I've been working on a Drupal FeedBurner integration module (http://drupal.org/project/feedburner) that helps with feed redirection and also FeedFlare/StandardStats/Ad Network insertion.
Post new comment