How to add RSS Autodiscovery to your site
By Pete Freitag
I sometimes see web sites or blogs that have RSS feeds, but fail to include the one line of HTML that enables RSS autodiscovery. Even some well known blogs such as 37 Signals - Signal Vs Noise omit the feature. Jason Kottke's blog has autodiscovery support on the main page, but not on his entry pages.
Adding that one line of code to your template will make it easier for people to subscribe to your RSS feed. Here's how:
<link rel="alternate" type="application/rss+xml" title="RSS Feed for petefreitag.com" href="/rss/" />
The above link
tag should be added inside the head
tag of your HTML document.
You will of course need to change the value of the title
and href
attributes to fit your needs.
If your feed is an ATOM feed you will want to change the type
to application/atom+xml
.
If you have multiple feeds for the url you can just specify multiple link
tags.
When you enable autodiscovery for your rss feed it allows browsers and aggregators to automatically detect the RSS feed when your browsing, and it makes it easy for the user to subscribe to it. Both FireFox, and Safari 2.0 support autodiscovery of RSS feeds out of the box, here's what it looks like when you find one:
How to add RSS Autodiscovery to your site was first published on June 15, 2005.
If you like reading about rss, autodiscovery, html, atom, or blogs then you might also like:
- Foundeo's 2007 End of the Year Sale
- Yahoo Pipes Generates Invalid RSS Feeds
- SoloSub is for button overload
- Google Sitemaps Accepts RSS and Atom Feeds
Discuss / Follow me on Twitter ↯
Tweet Follow @pfreitagComments
http://www.washingtonpost.com/wp-adv/rss/front.htm
i.e., I don't see any autodiscovery for it.
On your website, and on the WSJ feed website, I do see the auto-discovery icon on Firefox. I know how to subscribe when the icon is there but how does one subscribe when the icon is not present.