Redirect WordPress RSS to Feedburner

Redirect WordPress RSS to Feedburner

Feedburner is loved my many. But by default WordPress have its own RSS which doesn’t need any extra configuration. In order to redirect the default WordPress RSS to Feedburner, here is the hack.

# temp redirect wordpress content feeds to feedburner

RewriteEngine on

RewriteCond %{HTTP_USER_AGENT} !FeedBurner [NC]

RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC]

RewriteRule ^feed/?([_0-9a-z-]+)?/?$ http://feeds.feedburner.com/YOURFEEDNAME [R=302,NC,L]