Mobile app version of vmapp.org
Login or Join
Kristi941

: Should a website landing page redirect to user lang? I have a multi-languages website where different versions are served this way: https://example.com/<language ID>/[...] The language is either

@Kristi941

Posted in: #Multilingual #Seo #UrlRewriting

I have a multi-languages website where different versions are served this way:
example.com/<language ID>/[...]


The language is either detected from the client or specified from the default value.

Should I redirect people from example.com/ to example.com/<language ID>/?


On one hand, that costs a 301 redirection which slows down page display which might be superfluous. Page display timing is critical for UX, and bears some weight in SEO.
On the other hand, without redirecting, I would be displaying different content (different languages) at the same example.com/ URI. Could not that be bad for SEO?


The same question might be generalized for every URI that does not contain any language indicator such as example.com/product/food/SPAM/.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Kristi941

1 Comments

Sorted by latest first Latest Oldest Best

 

@Martha676

If the website is essentially the same in every language but just translated then your proposed solution follows best practice and in reality it just means that instead of example.com showing up high in search results or having a reasonable page rank it would be example.com/en/ or example.com/fr/ etc that show up and get the page rank. Functionally this solution works well for users since they can manually change the language code in the URL also and no cookie is required to remember their preferred language.

If the website is actually in essence a completely different website for each language, maintained from a different set of files, where it would not be uncommon for a page in one language to not have an equivalent in another language, then it might be better to use subdomains for the language codes, e.g. en.example.com/ or fr.example.com/ and submit them all as separate websites with individual sitemaps into Webmaster Tools.

To have a redirection at the root-level of the domain is very common for large companies/organisations and often considered best practice for multi-language websites.

To give an example (and I realise Microsoft are not always a company to adopt industry best practice), if I (from within in the UK with English/British locale settings in my operating system), enter www.microsoft.com/ into my web-browser I am redirected to www.microsoft.com/en-gb/index.aspx and if I enter microsoft into Google Search the top organic search result is for www.microsoft.com/en-gb/.

Wikipedia is an example of a large site that has used subdomains since each language version of their website has a different base of content, though Wikipedia have a gateway/landing page with links to all their languages on the root level of the domain instead of redirecting a user based on locale settings or IP geolocation.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme