当前位置: 首页 > 站长资讯 > 正文页面

dedecms首页添加根据IP访问区域跳转对应页面的方法

本文实例讲述了dedecms首页添加根据IP访问区域跳转对应页面的方法。分享给大家供大家参考。具体实现方法如下:E1X网站目录_网站网址收录与提交入口

根据访问者的IP来判断所在区域,根据区域信息,来跳转相对应的页面,好多分类信息网,团购网都有这样的功能,根据你在的城市,然后跳转相应的页面显示此城市的相关信息.E1X网站目录_网站网址收录与提交入口

先说下思路,首先获取访问者的IP信息,然后根据IP区域信息库进行对比,IP区域信息库网上有现成的,可下载到本地进行对比,也可直接用新浪或者淘宝,腾讯的API,这个自己baidu,注意编码问题,有的站点喜欢用GBK编码,有的喜欢用UTF-8编码,我用的淘宝的API,是UTF-8编码,对比后跳转到相对应的页面即可.E1X网站目录_网站网址收录与提交入口

$ip = getIp();//dede自带的查询IP功能,直接调用E1X网站目录_网站网址收录与提交入口

$res1 = file_get_contents("http://ip.taobao.com/service/getIpInfo.php?ip=$ip");E1X网站目录_网站网址收录与提交入口

$res1 = json_decode($res1);E1X网站目录_网站网址收录与提交入口

$useraddre = $res1->data->region;E1X网站目录_网站网址收录与提交入口

$useraddre = mb_convert_encoding($useraddre, "GBK", "UTF-8");E1X网站目录_网站网址收录与提交入口

$dzcity = "上海";E1X网站目录_网站网址收录与提交入口

$contra= strstr($useraddre,$dzcity);E1X网站目录_网站网址收录与提交入口

if(!emptyempty($contra)){E1X网站目录_网站网址收录与提交入口

//上海的,跳转到这里E1X网站目录_网站网址收录与提交入口

header("Pragma: no-cache");E1X网站目录_网站网址收录与提交入口

header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0");E1X网站目录_网站网址收录与提交入口

header('HTTP/1.1 301 Moved Permanently');E1X网站目录_网站网址收录与提交入口

header("Location: http://www.jb51.net/");E1X网站目录_网站网址收录与提交入口

exit;E1X网站目录_网站网址收录与提交入口

}E1X网站目录_网站网址收录与提交入口
E1X网站目录_网站网址收录与提交入口
这样写功能是能实现,但是要加在首页上面,也不知道效率如何,现在先这么写了.E1X网站目录_网站网址收录与提交入口

我这里要判断的区域就上海的,所以就这么写了,如果还要判断其他地方的,自己再加判断就可以了.E1X网站目录_网站网址收录与提交入口

希望本文所述对大家的dedecms建站有所帮助。E1X网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章