Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I have multiple rel="alternate" tags for a webpage?

In My site I have used rel="alternate" for RSS as follows

<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.mydomain.com/rss" />

Now I want to add another rel="alternate" tag for the mobile site as

<link rel="alternate" media="handheld" href="http://m.mydomain.com" />

Is there any issue to use multiple rel="alternate" tags in a page or no any effect to the SEO?

like image 397
Miuranga Avatar asked Sep 13 '12 11:09

Miuranga


Video Answer


2 Answers

It's no problem, quite the contrary, it's even encouraged.

E.g. to link to several translations of a page; see the example in HTML 4.01: Links and search engines. Or to link to several different feeds; see the example in HTML5: Link type "alternate". Or to link to several different (= alternative) stylesheets.

like image 196
unor Avatar answered Oct 01 '22 19:10

unor


There soesn't seem to be any problem using multiple instances according to this page:

http://support.google.com/webmasters/bin/answer.py?hl=en&answer=189077

like image 29
Billy Moat Avatar answered Oct 01 '22 20:10

Billy Moat