帝国CMS全站电脑端自动调整手机端动态静态代码
2018-10-16 站长 站长日志
帝国CMS
7.2版推出了完善的多访问终端功能,让网站多种移动访问端制作更加方便。7.5版中多访问端
升级:支持在主端后台刷新生成各访问端静态页面,多访问端用静态模式下使用更方便。
页面头部
JS代码在body
前面加上以下HTML源代码
<script type="text/javascript"> try {var urlhash = window.location.hash;if (!urlhash.match("fromapp")) {if ((navigator.userAgent.match(/(ipod|iphone|android|coolpad|mmp|smartphone|midp|wap|xoom|symbian|j2me|blackberry|wince)/i))) {window.location="'http://m.xxx.com/'";}}} catch(err) { }</script> <meta name="mobile-agent" content="format=xhtml;url='http://m.xxx.com/'"> |
动态页:http://m.ppqq.net/e/action/ListInfo/?classid=[!--self.classid--]
静态页:http://m.ppqq.net<?$r['classid']=$GLOBALS[navclassid];$classurl=sys_ReturnBqClassname($r,9);echo $classurl;?>
内容页
动态页:http://m.ppqq.net/e/action/ShowInfo.php?classid=[!--classid--]&id=[!--id--]
静态页:http://m.ppqq.net[!--titleurl--]
分成动态与静态页面,可自行选择
更换ppqq.net
为自己的子域名。