I’ve made the decision to take control of my feeds. I want to know how many users are reading my blog via sydication so I’ve decided to move to feedburner. The migration will be seemless for all readers. Additionally I’ll be able to provide syndication via email as well.
How to Migrate from Drupal to FeedBurner
These directions are written with Drupal in mind, though the approach used would work for pretty much any system. All we need to do is 3 simple steps.
1. Move the feeds location to a hidden location for feedburner to read
In drupal this is really easy. Just create a url alias from rss.xml to another feed name like "FeedBurnerHiddenFeed"
2. Tell feedburner to read this hidden location
Either create a new feed, or edit your existing one. Simply put the new location in for the feed location.
3. Write an .htaccess rule to redirect requests to feed to the feedburner feed.
<ifmodule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^spf13.com$ RewriteRule rss.xml <a href="http://feeds.feedburner.com/spf13" title="http://feeds.feedburner.com/spf13">http://feeds.feedburner.com/spf13</a> [R,L] RewriteCond %{HTTP_HOST} ^spf13.com$ RewriteRule node/feed <a href="http://feeds.feedburner.com/spf13" title="http://feeds.feedburner.com/spf13">http://feeds.feedburner.com/spf13</a> [R,L] </ifmodule>
















Post new comment