PHP判断来路是手机端还是PC端,并根据终端配置不同301跳转页面 不指定



更多



XML/HTML代码
        
  1. <?php  
  2.     
  3.   
  4.     
  5.     function is_mobile(){  
  6.     
  7.   
  8.     
  9.          //正则表达式,批配不同手机浏览器UA关键词。  
  10.     
  11.   
  12.     
  13.          $regex_match="/(nokia|iphone|android|motorola|^mot\-|softbank|foma|docomo|kddi|up\.browser|up\.link|";  
  14.     
  15.   
  16.     
  17.          $regex_match.="htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolPad|webos|techfaith|palmsource|";  
  18.     
  19.   
  20.     
  21.          $regex_match.="blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam\-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|";  
  22.     
  23.   
  24.     
  25.          $regex_match.="symbian|smartphone|midp|wap|phone|windows ce|iemobile|^spice|^bird|^zte\-|longcos|pantech|gionee|^sie\-|portalmmm|";  
  26.     
  27.   
  28.     
  29.          $regex_match.="jig\s browser|hiptop|^ucweb|^benq|haier|^lct|opera\s*mobi|opera\*mini|320x320|240x320|176x220";  
  30.     
  31.   
  32.     
  33.          $regex_match.=")/i";  
  34.     
  35.   
  36.     
  37.           
  38.     
  39.   
  40.     
  41.          return isset($_SERVER['HTTP_X_WAP_PROFILE']) or isset($_SERVER['HTTP_PROFILE']) or preg_match($regex_match, strtolower($_SERVER['HTTP_USER_AGENT'])); //如果UA中存在上面的关键词则返回真。  
  42.     
  43.   
  44.     
  45.     }  
  46.     
  47.   
  48.     
  49.         
  50.     
  51.   
  52.     
  53.          if(is_mobile()) {  
  54.     
  55.   
  56.     
  57.          //如果为真,则进行WAP页面。  
  58.     
  59.   
  60.     
  61.            header( "HTTP/1.1 301 Moved Permanently");    
  62.     
  63.   
  64.     
  65.            header("Location: http://");  
  66.     
  67.   
  68.     
  69.          }else {      
  70.     
  71.   
  72.     
  73.          //如果为假,则进行WEB页面。  
  74.     
  75.   
  76.     
  77.             header( "HTTP/1.1 301 Moved Permanently");  
  78.     
  79.   
  80.     
  81.             header("Location: http://");  
  82.     
  83.   
  84.     
  85.          }  
  86.     
  87.   
  88.     
  89.     ?>  

 


最后编辑: 郝聪 编辑于2021/04/19 13:52
发表评论

昵称

网址

电邮

打开HTML 打开UBB 打开表情 隐藏 记住我 [登入] [注册]