目前我在默认位置有一个 Zend 应用程序
www.example.com/{controller}/{action}
但是当用户从特定国家访问时,如何检测他们的 IP 地址并将他们重定向到这个基于 countryCode 的 url
www.example.com/uk/{controller}/{action}
?
为了检测用户访问的国家/地区,我编写了一个助手:
require_once '../library/Ipinfo/ip2locationlite.class.php';
class Application_View_Helper_GetLocation extends Zend_View_Helper_Abstract
{
public function getLocation()
{
$ipLite = new ip2location_lite;
$ipLite->setKey('APIKEY');
//Get errors and locations
$locations = $ipLite->getCity($_SERVER['REMOTE_ADDR']);
$errors = $ipLite->getError();
$country = strtolower($locations['countryName']);
return "$country";
}
}
上面的代码将返回国家名称。如果用户从法国访问,我该如何重写 url 以使 url 变为example.com/france/{controller}/{action}
?