通过PHP自带的$_SERVER判断 手机访问网站自动跳转到手机版

需要有PC版网站和移动版网站,当手机访问域名的时候,通过PHP自带的$_SERVER判断浏览设备并跳转到移动版页面。如果是PC电脑打开网址,则不跳转直接访问pc版。

1 <?php  

2 //php判断客户端是否为手机  

3 $agent = $_SERVER['HTTP_USER_AGENT'];  

4 if(strpos($agent,"NetFront") || strpos($agent,"iPhone") || strpos($agent,"MIDP-2.0") || strpos($agent,"Opera Mini") || strpos($agent,"UCWEB") || strpos($agent,"Android") || strpos($agent,"Windows CE") || strpos($agent,"SymbianOS"))

5 header("Location:http://wap.域名.com/");}

6 ?>  

 

你可能感兴趣的:(server)