In this video I have explained how you can change the head feed link in your blog. This is a necessary step if you are using Feedburner RSS feeds, otherwise you would lose subscriber counts and other statistics!
Find the following code in your theme’s header.php file and delete it.
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="<?php bloginfo('atom_url'); ?>" />
Replace it with:
<link rel="alternate" type="application/rss+xml" title="Your Blog Feed Title" href="http://your-feedburner-feed-link.com" />