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
[code]
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]
[/code]
Be sure to replace my Feedburner URL with yours. Also, always back up your .htaccess file before making changes.
Do you like this article? Submit it to Blogosphere News!
One Response
WordPress Italy » Archivio Blog » Plugin WordPress: FeedBurner
May 3rd, 2005 at 7:35 am
1[...] un backup del vostro file .htaccess prima di fare una qualsiasi modifica. [Traduzione da Blogging Pro] Questo articolo è stat [...]