Each time some person click on your default feed url (http://www.yourblog.com/feed) he will be redirected to feedburner feed url (http://feeds.feedburner.com/yourfeedurl) Just edit your .htaccess file and paste the followin code. Also don't forget to backup your .htaccess file befor doing any editings.
# temp redirect wordpress content feeds to feedburner
<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/wprecipes [R=302,NC,L]
</IfModule>
you are done
0 comments:
Post a Comment