服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > ecshop教程 >

设置ecshop手机访问跳转到其他独立域名页

时间:2016-05-25 01:59来源:未知 作者:最模板 点击:
如何实现ecshop程序手机访问跳转到我想跳转到的页面,下面最模板的技术帮你解决。 首先打开根目录下 index.php,找到 p style=text-indent: 2em;$ua = strtolower($_SERVER[HTTP_USER_AGENT]);brbr$uachar = /
如何实现ecshop程序手机访问跳转到我想跳转到的页面,下面最模板的技术帮你解决。
 
首先打开根目录下 index.php,找到
 
 
<p style="text-indent: 2em;">$ua = strtolower($_SERVER['HTTP_USER_AGENT']);<br><br>$uachar = "/(nokia|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|mobile)/i";<br><br>if(($ua == '' || preg_match($uachar, $ua))&& !strpos(strtolower($_SERVER['REQUEST_URI']),'wap'))<br>{<br>    $Loaction = 'm.baisihan.com';<br>    if (!empty($Loaction))<br>    {<br>        ecs_header("Location: $Loactionn");<br>        exit;<br>    }<br>}<br></p>
 
如图所示 代码24行到39行
 
 
将上面代码替换成以下代码
 
$ua = strtolower($_SERVER['HTTP_USER_AGENT']);
 
$uachar = "/(iphone|android|phone|mobile|wap|netfront|java|opera mobi|opera mini|ucweb|windows
ce|symbian|series|webos|sony|blackberry|dopod|nokia|samsung|palmsource|xda|pieplus|meizu|midp|cldc
|motorola|foma|docomo|up.browser|up.link|blazer|helio|hosin|huawei|novarra|coolpad|webos|techfaith|palmsource
|alcatel|amoi|ktouch|nexian|ericsson|philips|sagem|wellcom|bunjalloo|maui|smartphone|iemobile|spice|bird|zte-|longcos|pantech|gionee|portalmmm|jig
browser|hiptop|benq|haier|^lct|320x320|240x320|176x220)/i";
if(($ua == '' || preg_match($uachar, $ua))&& !strpos(strtolower($_SERVER['REQUEST_URI']),'wap'))
{
    $Loaction = '//www.zuimoban.com';
    if (!empty($Loaction))
    {
        header("Location: $Loactionn");
        exit;
    }
}
 
这里的www.zuimoban.com可以更换为你想要换的网址
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容