Click to See Complete Forum and Search --> : Multiple <link rss> tags


GUIR
12-22-2008, 08:41 AM
Hi,

Can anyone pls let me know the effects of following.

Suppose I have links for 3 RSS feeds in a single page., and I need to have HTML <link> tags for RSS,

If I place 3 <link rss> tags within <head> as follows, will be effective or else what are the alternatives.

<link rel="alternate" type="application/rss+xml" title="RSS" href="http://mysite.org/xml/rss1.xml" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://mysite.org/xml/rss2.xml" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://mysite.org/xml/rss3.xml" />

Thanks and Best Regards

Charles
12-22-2008, 11:20 AM
Can anyone pls let me know the effects of following.It being XHTML it will trip up some HTML parsers. More importantly, using the same title for all three will be confusing to user agents and users alike.