Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Some time ago I developed a multilingual website and now they have asked me that the website should load the language depending on the visitor's IP address. They are going to provide me with an IP address list of different countries.

For example. If an italian visitor loads the website, the website should load www.mydomain.com/it

If the IP is not recognised, the website should load www.mydomain.com

How can I achieve this?

Thanks in advance.

Regards

share|improve this question
server type? progarmming language/environment? not enough information. – Sky Sanders May 19 '10 at 12:49

2 Answers

up vote 0 down vote accepted

I found a solution and it worked perfectly for me.

I found a site which provides a database table with all the necessary ips and locations. The site can be found at:

http://www.ip2nation.com/

You can download both the sql dump and the php code sample from there.

share|improve this answer

You could also use the Accept-Language request header: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html http://www.w3.org/International/questions/qa-lang-priorities.en.php

You could write a redirect in Apache or NGINX to redirect to a different site based on that header.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.