PHP开发实例大全(提高卷) 中文完整pdf扫描版[244MB]
在ECSHP根目录下找到index.php,注释或者删除掉下面的代码
$ua = strtolower($_SERVER['HTTP_USER_AGENT']);
$uachar = "/(nokia|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|mobile)/i";
if(($ua == '' || preg_match($uachar, $ua))&& !strpos(strtolower($_SERVER['REQUEST_URI']),'wap'))
{
$Loaction = 'mobile/';
if (!empty($Loaction))
{
ecs_header("Location: $Loaction\n");
exit;
}
}
转载请注明:谷谷点程序 » ECSHOP手机访问和电脑访问效果一样