Free Wordpress Blog Setup

How to Redirect WordPress Feeds to FeedBurner without a Plugin

By Editorial Staff in Tutorials
How to Redirect WordPress Feeds to FeedBurner without a Plugin

Recently we featured an article that showed a step by step guide to setup FeedBurner in which we shared the plugins you can use to redirect. In this article, we will show you how you can redirect WordPress RSS Feeds to Feedburner without using a plugin (This tip is for intermediate to advanced users).

First open your .htaccess file which is located in your root directory (Hint: same folder where wp-config.php is located). Then paste the following code:

<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/wpbeginner [R=302,NC,L]
</IfModule>

By the way, don’t forget to change the feed URL to your own Feed URL otherwise you will be redirecting users to our Feeds.

What Next?

Digg it
Save This Page
Subscribe to WPBeginner
Stumble it
Free Wordpress Blog Setup

Comments

11 Responses to “How to Redirect WordPress Feeds to FeedBurner without a Plugin”
  1. Murlu says:

    Thanks for the tip, should help reduce the amount of load time since you’re not using a plugin :)

  2. Brett says:

    Very, very cool. Thanks for sharing this, I was actually wondering if there was a way to do this yesterday.

  3. Konstantin says:

    How does that go together with WordPress’ permalinks?

    I always get an error 500 when I try to combine those two scripts:

    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]

  4. Jolora says:

    Good tip – it’s a problem I hadn’t even considered before.

  5. gouthami.b says:

    I am using feed redirctor plugin.Will try this now

  6. Tony Tran says:

    I am trying this tip for my news blog but it doesn’t work. Always getting 500 error.

Share Your Opinions

Tell us what you're thinking...
and if you want a pic to show with your comment, then get gravatar!

Please make sure that you have read our Comment Policy.

Due to high volume of request from our readers, we are adding this feature that allows you to stay updated with this post's comments without having to participate in the discussion even though we would love your input as always. Don't worry we hate SPAM just as much as you do, so you will never receive any SPAM messages from our site and that's our promise to you.

Subscribe without commenting

Close Bar