一、代码很多,我这里使用了百度提供的。打开你网站模板下的head.php页面,在</head>前添加下面代码–通过百度排判断是否是手机访问网站,如果是跳转到相应的手机版网页
<script src="http://siteapp.baidu.com/static/webappservice/uaredirect.js" type="text/javascript"></script><script type="text/javascript">uaredirect("http://suppore.cn/m");</script>
二、也可以使用以下代码
<!–通过判断是否是手机访问网站,如果是跳转到相应的手机版网页–>
<script type="text/javascript"> <!-- //平台、设备和操作系统 var system = { win: false, mac: false, xll: false, ipad:false }; //检测平台 var p = navigator.platform; system.win = p.indexOf("Win") == 0; system.mac = p.indexOf("Mac") == 0; system.x11 = (p == "X11") || (p.indexOf("Linux") == 0); system.ipad = (navigator.userAgent.match(/iPad/i) != null)?true:false; //跳转语句,如果是手机访问就自动跳转到响应的手机网站页面 if (system.win || system.mac || system.xll||system.ipad) { } else { window.location.href = "http://www.xx.com/m/?post=<?php echo $logid;?>"; } --> </script>
PS:http://www.XX.com/m/?post=<?php echo $logid;?> 为你的手机页面地址跳转!