用手机打开ecshop网店,就会被重定向到mobile文件夹,若是打开wap功能,就能看到wap版的网站。但如今智能手机横行,iphone、安卓能够跟电脑同样浏览和购物,这个wap功能就有点鸡肋。如今把它屏蔽掉php
编辑index.php,注释或者删除掉如下代码css
$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;
}
}