FeedBurner is one of the first choices when it comes to free RSS Feeds Burning applications. It’s loaded with several features, primarily being:
- Subscribe to feeds through email or RSS Feed Readers like Google Reader, FeedDemon, NetVibes, etc.
- Statistics about feed subscribers which helps in analyzing the the readership through feeds.
- Browser Friendly – Presents the feeds in a neat format across all the web browsers as compared to WordPress Feeds.
- Monetize the feeds by putting Google Adsense ads.
WordPress by default comes with various feeds. So, when you install WordPress, it automatically creates default URLs through which various feeds for your blogs can be accessed. For instance,
http://techlisher.com/feed. Considering the features of Feedburner vis-a-vis WordPress Feeds, it makes all sense to re-direct WordPress Feed URL to the blog’s Feedburner URL – for instance, re-direct
http://techlisher.com/feed to
http://feeds.feedburner.com/techlisherblog. There are some WordPress plugins to enable this re-direction viz.,
FD FeedBurner Plugin,
FeedBurner FeedSmith, etc. But why use a plugin when you can do the same set of things without it? Yes, in this article we will talk about
how to re-direct WordPress Feeds to Feedburner Feeds without a plugin but with .htaccess file.
How to re-direct WordPress feeds to Feedburner through .htaccess file?
1. Open .htaccess file which is located in the same folder where the wp-config.php is located (Note: If you’re accessing your blog directory through FTP, remember to enable ‘Show hidden files’).
2. Paste the following code in your .htaccess file and save it.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} !FeedBurner [NC]
RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC]
RewriteRule ^feed/?([_0-9a-z-] )?/?$ http://feeds.feedburner.com/techlisherblog [R=302,NC,L]
</IfModule>
Remember:
- This code should be pasted above the # BEGIN WordPress line in .htaccess file.
- Most importantly, remember to replace the FeedBurner URL given in the code above to your own FeedBurner URL otherwise you will be re-directing users to our Feeds.
About the author: Shalin Tejpal Jain View all posts by Shalin Tejpal Jain
An Insurance graduate who is in to social media and blogging. He is a crazy tech-enthusiast and spends most of his time testing web applications and optimizing websites for search engines. Shalin is an active follower of tech startups and can always be found scribbling something in his grey spiral book when idle. Surprisingly, he calls it his 'Bookmark Manager'.
Twitter
-
Facebook
Like it? Why not share it then ? »