根据IP跳转的实现思路
首先要获取到访问者所在IP信息,然后与后台数据对比,这种数据在互联网上一大把,小编这里就不过多解说,因为下面有更方便的方法;那就是直接使用腾讯的API或者淘宝的API,这里有gbk和utf8的编码格式,大家使用的时候注意一下,根据IP跳转到指定网址这个功能,都是在首页实现欢迎页面,那么我们就在首页内添加如下代码:$ip = getIp();//dede自带的查询IP功能
$res1 = file_get_contents("http://ip.taobao.com/service/getIpInfo.php?ip=$ip");
$res1 = json_decode($res1);
$useraddre = $res1->data->region;
$useraddre = mb_convert_encoding($useraddre, "GBK", "UTF-8");
$dzcity = "石家庄";
$contra= strstr($useraddre,$dzcity);
if(!empty($contra)){//石家庄,跳转到这里
header("Pragma: no-cache");
header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
header('HTTP/1.1 301 Moved Permanently');
header("Location: http://sjz.example.com/");
exit;
}
上面这段代码,是石家庄访问者就会跳转到http://sjz.example.com/的网站上面啦,如果你需要对网站首页设置多个跳转的话,那么就多增加个城市判断即可。
以下是青锋建站给大家分享织梦dede根据IP跳转到指定网址的实现方法。青锋建站,提供专业的高品质网站制作服务,包括dede网站建设服务,SEO,网络营销,PHP开发,网站建设知名品牌,全国接单,专业做优化型网站,为企业构建营销平台。
转载请注明来源网址:青锋建站-http://www.sjzphp.com/cmsxitong/dedecms/tiaozhuan_1510.html