让不同城市的访客在访问页面时跳转到对应的城市站才能带来更好的体验,而新浪iplookup接口可以帮我们判断ip所在城市,在这个基础上再进行开发即可实现根据ip跳转城市分站的功能。

我们在需要判断ip所属城市的模板中加入如下代码:

$IP_str=file_get_contents('http://int.dpool.sina.com.cn/iplookup/iplookup.php');
$IP_tmp = explode("\n", $IP_str);
$IPcou=count($IP_tmp)-1;
$IP_tmp1 = explode(" ", $IP_tmp[0]);
if($IP_tmp1[5]){
    $user_IP=$IP_tmp1[5];
}else{
    $user_IP=$IP_tmp1[4];
}
if($user_IP == '上海'){
    header('Location: shanghai.php');
}elseif($user_IP == '北京'){
    header('Location: beijing.php');
}else{
    
}

如果需要分辨多个城市,可在elseif后面继续添加判断,则可以跳转到更多的城市。

这样,我们就可以完美实现帝国cms根据访客ip地址跳转到不同的城市分站了。
让不同城市的访客在访问页面时跳转到对应的城市站才能带来更好的体验,而新浪iplookup接口可以帮我们判断ip所在城市,在这个基础上再进行开发即可实现根据ip跳转城市分站的功能。

我们在需要判断ip所属城市的模板中加入如下代码:

$IP_str=file_get_contents('http://int.dpool.sina.com.cn/iplookup/iplookup.php');
$IP_tmp = explode("\n", $IP_str);
$IPcou=count($IP_tmp)-1;
$IP_tmp1 = explode(" ", $IP_tmp[0]);
if($IP_tmp1[5]){
    $user_IP=$IP_tmp1[5];
}else{
    $user_IP=$IP_tmp1[4];
}
if($user_IP == '上海'){
    header('Location: shanghai.php');
}elseif($user_IP == '北京'){
    header('Location: beijing.php');
}else{
    
}

如果需要分辨多个城市,可在elseif后面继续添加判断,则可以跳转到更多的城市。

这样,我们就可以完美实现帝国cms根据访客ip地址跳转到不同的城市分站了。