There are lots of blogs using Feedburner for their blog. However, you have to manually modify your theme to change the RSS URL. However, now this can be done using the .htaccess file only. Use the below mentioned rule for the same.

Don’t forget to modify line 6 before applying this code!

# temp redirect wordpress content feeds to feedburner
<IfModule mod_rewrite.c>
 RewriteEngine on
 RewriteCond %{HTTP_USER_AGENT} !FeedBurner    [NC]
 RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC]
 RewriteRule ^feed/?([_0-9a-z-]+)?/?$ http://feeds2.feedburner.com/catswhocode [R=302,NC,L]
</IfModule>

Popularity: 7%

Related posts:
  1. Case Study: Permalink 404 error on Wordpress Blog Hi, Problem summary: Permalink 404 arise thrown when change...
  2. What is Feeds and readers? Here are Some General Queries and Their Answers About the...
  3. How To Disable RSS Feeds In WordPress Blog? Hello All, In order to disable RSS Feeds in wordpress...
  4. How To Add Multiple RSS Feeds To Wordpress Dashboard Hi, Wordpress users who wants to use other sources of...
  5. Case Study: I have enabled SEF/Short URLs to My Blog and receiving “404 Not Found” Error Hi, Problem Summary: One of our client has enabled SEF/Short...

Leave a Reply

You must be logged in to post a comment.