I agree with @tripleee's comment about using the HTTP header rather than lookup up their IP which can often result in incorrect values, or force users behind remote proxies into settings they don't want.
Try this controller plugin for redirecting based on the user's Locale as given by their browser:
<?php
class Application_Plugin_Language extends Zend_Controller_Plugin_Abstract
{
public function routeShutdown(Zend_Controller_Request_Abstract $request)
{
/*
// if you add "localization.default_locale = "en_US" to your application.ini, uncomment the following
$config = new Zend_Config($this->getOption('localization'), true);
$loc = (isset($config->default_locale)) ? $config->default_locale : 'en_US';
*/
$module = $request->getModuleName();
if ($module != 'default') return ;
// You can also check a cookie or session value here to see if you can return from the plugin as well
$loc = 'en_US';
Zend_Locale::setDefault($loc);
try {
$locale = new Zend_Locale(Zend_Locale::BROWSER);
} catch (Zend_Locale_Exception $e) {
$locale = new Zend_Locale($loc);
}
$language = $locale->getLanguage(); // e.g. "en", "de", "ru" etc.
$urlHelper = new Zend_Controller_Action_Helper_Url();
$url = $urlHelper->url(array('module' => $language, 'controller' => 'form', 'action' => 'index'));
$redirector = Zend_Controller_Action_HelperBroker::getStaticHelper('redirector');
$redirector->gotoUrl($url);
}
}
This plugin will redirect to a module with the language name based on the language set by the user's browser if they are currently requesting the default module.
Note this code does nothing to check if the module you are redirecting to exists or not. You should check that the language is supported before redirecting.
You could also add a check for a cookie or session value that contains the user's desired language and redirect based on that.
Register the plugin by adding this to application.ini:
resources.frontController.plugins.language = "Application_Plugin_Language"
If you want to redirect based on country and not language, then change $language = $locale->getLanguage(); to $region = $locale->getRegion();
Hope that helps.
Accept-Languageheader should be used for that. The country code is useful for country-specific things, like currency and postal code tables. – tripleee Jul 20 '12 at 7:24Accept-Languagewhile keeping the same URL scheme. – PhpMyCoder Jul 29 '12 at 4:17