ecshop 版本: 2.7.3

手机和平板电脑等移动终端访问ECSHOP提示没有开启手机购物功能,会强制跳转到域名/mobile目录,可以通过修改index.php实现手机、平板访问PC版页面,而不用单独做手机版页面。

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;
    }

}