联系官方销售客服
1835022288
028-61286886
m端如果不能自动跳转时,还是显示的是PC端模板,可考虑查看 PC端的模板里是否有以下代码,如果添加以下代码,即可
<meta http-equiv="mobile-agent" content="format=xhtml;url=/mobile/index.php"> <script type="text/javascript">if(window.location.toString().indexOf('pref=padindex') != -1){}else{if(/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))){if(window.location.href.indexOf("?mobile")<0){try{if(/Android|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)){window.location.href="/m/index.php";}else if(/iPad/i.test(navigator.userAgent)){}else{}}catch(e){}}}}</script>
---------------------
比较 啰嗦的说明:
在以上代码中,原
url=/mobile/index.php
在原有的 目录结构时,很多用户的 不是在mobile目录下,而是在/m 目录下,因此会访问出错,或者不能跳转到手机端的模板上。
原代码可能是:
url=/m/index.php
这时需要修改成:
url=/mobile/index.php
即可。(前提是,你的是 m站,绑定的是mobile)