RSS Feed and Browsers

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

I offer RSS feeds on my web site.
How to make browsers, like Firefox, to recognize the RSS channels I
offer?

Thanks,
Miguel
 
Internet Explorer 7 should recognize RSS feeds "Out of the box" and offer you
to subscribe, displaying the contents via its own internal XSL Stylesheet.
For Firefox and other browsers, consider the "rel" link which looks like so
in your page markup:

<link rel="alternate" type="application/rss+xml" title="eggheadcafe.com
Main Feed" href="/rss.xml">

Peter
 
Add the following to your web page(s):

<link rel="alternate" type="application/rss+xml" title="Feed Title"
href="myrssfeed.xml">

IE7 & FireFox recognize this...

Hello,

I offer RSS feeds on my web site.
How to make browsers, like Firefox, to recognize the RSS channels I
offer?

Thanks,
Miguel
 
Every standard browser uses this...

<link rel="alternate" type="application/rss+xml"
href="http://tempuri.org" title="My Blog" />

That will notify the browser there's an RSS resource related to that
page. Intranet Explorer 6 won't get near that though.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top