Mobile app version of vmapp.org
Login or Join
Cody1181609

: Canonical and hreflang implementation for international desktop and mobile site versions I have an interesting case and I am lost in it. There are two versions of the site: desktop and mobile.

@Cody1181609

Posted in: #CanonicalUrl #Hreflang #Mobile #Redirects #Seo

I have an interesting case and I am lost in it. There are two versions of the site: desktop and mobile. And there are also international versions: English and Spanish. I'm stuck at implementation of canonical tags. Currently my setup has the following:

English (default) desktop page has these:

<link rel="alternate" href="http://www.site.com" hreflang="x-default">
<link rel="alternate" href="http://www.site.com" hreflang="en">
<link rel="alternate" href="http://www.site.com/es/" hreflang="es">
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://m.site.com/" >


English Mobile page has these:

<link rel="alternate" href="http://m.site.com/" hreflang="x-default">
<link rel="alternate" href="http://m.site.com/" hreflang="en">
<link rel="alternate" href="http://m.site.com/es/" hreflang="es">
<link rel="canonical" href="http://www.site.com/">


Spanish Desktop version:

<link rel="alternate" href="http://m.site.com/" hreflang="x-default">
<link rel="alternate" href="http://m.site.com/" hreflang="en">
<link rel="alternate" href="http://m.site.com/es/" hreflang="es">
<link rel="canonical" href="http://www.site.com/">


Spanish Mobile version:

<link rel="alternate" href="http://m.site.com/" hreflang="x-default">
<link rel="alternate" href="http://m.site.com/" hreflang="en">
<link rel="alternate" href="http://m.site.com/es/" hreflang="es">
<link rel="canonical" href="http://www.site.com/es/">


But I somewhat feel that I messed the things...

Three questions:

1. Could you guys point me to what I did wrong and explain how to set it right?

2. Since I'm redirecting from desktop version of the pages to mobile pages when mobile users access desktop the pages, do I also need to redirect desktop visitors to desktop page versions if they visit mobile pages?

3. Since my pages already have alternate and hreflang references to point to international and mobile versions of the pages, if I add 5 languages of desktop versions and 5 languages of mobile versions to sitemaps, my sitemaps will get bulky. What are the pros and cons for referencing all page versions in sitemap and for include just general (English/Desktop) version in sitemap?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Cody1181609

1 Comments

Sorted by latest first Latest Oldest Best

 

@BetL925

This looks pretty spot on to me, apart from on the Spanish desktop site set, where there are quite a few errors.

You are referencing the mobile version with the three rel="alternate" hreflang= tags, you should be referencing the desktop version.

The canonical tag on the Spanish desktop is pointing to the English language page. If you need to set a canonical tag it should be pointing to the spanish desktop page (itself). However please note, you do not need to define a canonical tag in the rel="alternate" hreflang= environment for it to work. (in the original specs you did, but no longer). However you can define it should you need it for other duplicate page issues.

You have missed the rel="alternate tag off on the Spanish desktop version pointing to the mobile version of it.

Spanish Desktop version should be:

<link rel="alternate" href="http://www.site.com" hreflang="x-default">
<link rel="alternate" href="http://www.site.com" hreflang="en">
<link rel="alternate" href="http://www.site.com/es/" hreflang="es">
<link rel="canonical" href="http://www.site.com/es/">
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://m.site.com/es/" >


Google webmaster Tools is now reporting on rel="alternate" hreflang= tag issues, so once implemented you can check how its working there.

With regards to adding all pages to a sitemap.xml file, it's something I practice myself, but you dont have to add every page on your site in xml sitemaps. It is good practice, helps Google find pages, figure out which ones are important and the correct canonical pages.

You could off course use xml sitemaps to add the rel="alternate" hreflang= make up in, instead of in the page code; however this would actually make the xml sitemap files even more unwieldy to manage, lots of repeating of URLs.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme