download 1

 

We just published an article with a step-by-step instruction for setting up FeedBurner, as well as the plugins you may use to redirect. We’ll show you how to redirect WordPress RSS Feeds to Feedburner without needing a plugin in this article (This tip is for intermediate to advanced users).

To begin, go to your root directory and open the.htaccess file (Hint: same folder where wp-config.php is located). Then paste the following code into the box:

1
2
3
4
5
6
<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>

 

Redirect WordPress

Leave a Reply