Mobile app version of vmapp.org
Login or Join
Hamm4606531

: How should I approach sitemap.xml, hreflang and regions for my website I am a developer on a large site which regionally targets some content with a specific url. Is it technically correct to

@Hamm4606531

Posted in: #Hreflang #Sitemap #XmlSitemap

I am a developer on a large site which regionally targets some content with a specific url. Is it technically correct to target the countries in those regions in the sitemap.xml and point them to the regional url?

In a region like North America there are two or three countries that could be serviced by an alternate hreflang's (Canada, USA) but point to a common url: example.com/us

For example;

<url>
<loc>http://example.com/au/</loc>
<xml:link rel="alternate" hreflang="en-ca" href="http://example.com/us/" />
<xml:link rel="alternate" hreflang="en-us" href="http://example.com/us/" />
<xml:link rel="alternate" hreflang="en-gb" href="http://example.com/uk/" />
<lastmod>2015-01-26T12:12:59Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>


Is this appropriate? I want to ensure that visitors from Canada know that there is regional content that is appropriate for them (despite the unfortunate regional directory name — 'us' rather than 'north-america'). Of course, I also want Google know that there is content for that locale as well.

Thanks in advance.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Hamm4606531

1 Comments

Sorted by latest first Latest Oldest Best

 

@Tiffany637

Yes, it's correct to target the countries in the sitemap.xml and point them to the regional url.

And yes, you can use the same URL for multiple locations.

You might want to simplify it here though, and use /us/ for "en" (all English variations that aren't otherwise specified) and /uk/ for "en-gb" (just English in Great Britain).

If possible, use the more generic versions of the hreflang values, since that lets those URLs to be used broader. You might even consider using "x-default" here, if that's your global preference. You can also use the same URL for x-default & a more specific variation too.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme