asp.netseomultilingualcultureinfo

SEO implications of a multi lingual site with detection of system culture


I have developed a multi-lingual site in ASP.NET, which detects the user's system culture, and displays content in the appropriate language.

This is all working nicely, but my client has since had an SEO audit. The SEO agency has expressed a concern that this is not good SEO practice, as there are not unique URLs for each language.

They have suggested that the site may be accused of cloaking, and that google may not index the site correctly for each different language.

Any ideas on whether these are valid concerns, and if there is an advantage to having unique URLs for each language version of the site?


Solution

  • Although you have done a beautiful job switching Language automatically, the SEO Agency is correct!

    That google may not index the site correctly for each diffferent language.

    This is true! Google doesn't send the accept-language header last time I checked. This means that Google will only index the default language.

    They have suggested that the site may be accused of cloaking,

    This differs from your Excact implementation, but it is possible your site will receive a penalty!

    There IS advantage having unique URLs (for each language version) on the site!
    First of all, for your users: they can link to the language they prefer. Secondary for the Search Engines as they can index your site correctly.

    I advice most of the time to redirect the user only on the home page for a language switch using a 302 redirect to the correct URL (and so the correct language). (edit: You can review the post by Matt Cutts "SEO Advice: Discussing 302 redirects")

    To verify my advice: install fiddler and surf to http://www.ibm.com. As shown below, i received a 302 redirect to the appropriate language, arriving at www.ibm.com/be/en.

        Result  Protocol    Host    URL Body    Caching Content-Type    
    4   302 HTTP    www.ibm.com /   209     text/html
    5   200 HTTP    www.ibm.com /be/en/ 5.073   no-cache  text/html;charset=UTF-8
    

    There are a few solutions you can solve this:

    Just make sure you supply every time the same content for the same URL.

    Good luck with it!