东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

帝国CMS全站电脑端自动调整手机端动态静态代码

2018-10-16 站长 站长日志

帝国CMS7.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为自己的子域名。

文章评论