7 Comments

  1. Thanks for posting this article and it has been quite helpful in understanding few of the technicalities .
    However I am having some problems in redirecting multiple rss feeds to feedburner, as the feedburner is unable to show updated data .My .htaccess file looks like
    ———————————–

    RewriteEngine On
    RewriteBase /

    RewriteCond %{HTTP_USER_AGENT} !^(FeedBurner|FeedValidator) [NC]
    RewriteCond %{HTTP_USER_AGENT} .

    Redirect 302 /rss/abc.xml http://feeds.feedburner.com/www123com
    Redirect 302 /rss/def.xml http://feeds.feedburner.com/www123com
    Redirect 302 /rss/ghi.xml http://feeds.feedburner.com/www123com

    ————————————-
    The first redirect 302 is showing updated data and the rest are showing old data. It would be of great help if you could guide me on this.

    Thanks in advance
    Rahul

    1. Just one suggestion and you may have a try:

      Merge the three ‘Redirect 302’ together using regular expression like the one in the post ‘(feed.*|comments.*)’ .

      Hope it help.
      Eric

  2. If I redirect the feed to Feedburner, when the Feedburner request feed won’t WordPress enter into a eternal looping?

    Sorry if I asked something simple and the answer is obvious.

    1. This line:

      RewriteCond %{HTTP_USER_AGENT} !^.*(FeedBurner) [NC]

      ensures that the feed URL is not redirected for the feedburner robots.

Leave a Reply

Your email address will not be published. Required fields are marked *