WordPress Plugin: FeedBurner
This WordPress FeedBurner Plugin adds to the Options area in the WordPress admin instructions on how to get your site setup to work with FeedBurner. From what I can gather the plugin writes the appropriate code to your .htaccess file telling Feebdburner to use your WordPress feed but everyone else to use your custom Feedburner feed.
I’ve done the same thing by adding the following to my .htaccess file
RewriteCond %{HTTP_USER_AGENT} FeedBurner
RewriteRule ^feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1 [QSA,L]
RewriteCond %{HTTP_USER_AGENT} FeedBurner
RewriteRule ^(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1 [QSA,L]
RewriteCond %{HTTP_USER_AGENT} !FeedBurner
RewriteRule ^feed/(feed|rdf|rss|rss2|atom)/?$ http://feeds.feedburner.com/bloggingpro/PfjF [R,L]
RewriteCond %{HTTP_USER_AGENT} !FeedBurner
RewriteRule ^(feed|rdf|rss|rss2|atom)/?$ http://feeds.feedburner.com/bloggingpro/PfjF [R,L]
Be sure to replace my Feedburner URL with yours. Also, always back up your .htaccess file before making changes.








