wxycms实现手机端跟PC端URL一致

531次浏览 更新日期:2021-05-27 10:53:31 分类:程序交流 评论:0

实现手机端跟PC端URL一致方法如下:

index下的index.class.php


include template('index', 'index');


改成

if(isMobile()){

    include template('mobile', 'index');

}else{

    include template('index', 'index');

}


即可


我来说两句
作者信息
发布见解
发内容 回顶部