帝国cms 如果是手机访问pc首页就跳到手机


//以下放自定义函数文件e/class/userfun.php里面//手机端访问跳转判断函数functioncheck_wap(){if(stristr($_SERVER['HTTP_VIA'],"wap")){//先检查是否为wap代理,准确度高returntrue;}elseif(strpos(strtoupper($_SERVER['HTTP_ACCEPT']),"VND.WAP.WML")>0){//检查浏览器是否接受WML.returntrue;}elseif(preg_match('/(blackberry|configuration/cldc|hp|hp-|htc|htc_|htc-|iemobile|kindle|midp|mmp|motorola|mobile|nokia|operamini|opera|Googlebot-Mobile|YahooSeeker/M1A1-R2D2|android|iphone|ipod|mobi|palm|palmos|pocket|portalmmm|ppc;|smartphone|sonyericsson|sqh|spv|symbian|treo|up.browser|up.link|vodafone|windowsce|xda|xda_)/i',$_SERVER['HTTP_USER_AGENT'])){//检查USER_AGENTreturntrue;}else{returnfalse;}}
$agent=check_wap();if($agent){header('Location:http://m.ff16.com');exit;}//以上为调用部分放到动态页面如首页



来自为知笔记(Wiz)