mastiff:
Both of the feeds work fine for me.
The URI’s for the feeds are specified with feed:
before the http url so that browsers know to pass them onto a feedreader – this is not supported by all browsers though which is probably your problem.
If you want to remove the feed:
from the links search in your themes template files for the feed:
and remove it.
the code producing those links will look something like this:
<a href="feed:<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a>
and <a href="feed:<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a>.
This will be in the file called footer.php
in your theme I believe.
westi