欢迎您访问溜库网,本站旨在为大家在办公维护及日常工作中提供力所能及的帮助。
当前位置:首页建站填坑 正文

phpcms手机端与PC端使用不同文件夹的模板

来源:溜库网 发表时间:2024-12-06 16:35:42 评论:0 查看:
phpcms手机端与PC端使用不同文件夹的模板第一步:网址解析绑定www XX com,m XX com,XX com到空间目录。第二步:伪静态栏目伪原创后网址如:

phpcms手机端与PC端使用不同文件夹的模板

第一步:网址解析

绑定www.XX.com,m.XX.com,XX.com到空间目录。

第二步:伪静态

栏目伪原创后网址如:http://www.XX.com/list-1-1.html,
内容页网址:http://www.XX.com/show-1-1-1.html。

对应移动站网址:

栏目伪原创后网址如:http://m.XX.com/list-1-1.html
内容页网址:http://m.XX.com/show-1-1-1.html。

第三步:调整模板入口

修改phpcms/modules/content/index.php,在31行处找到

include template('content','index',$default_style);

修改为:

if(substr($_SERVER['SERVER_NAME'], 0,1) == 'm'){
    include template('content_m','index',$default_style);
}else{
    include template('content','index',$default_style);
}

分别在203、265、278行处把

include template('content',$template);

修改为:

if(substr($_SERVER['SERVER_NAME'], 0,1) == 'm'){
    include template('content_m',$template);
}else{
    include template('content',$template);
}

意思是,当域名头部为m时选择 content_m文件夹里的模板,www时选择content文件夹的模板。

第四步:复制文件夹

把存放模板的文件夹content复制一份,重命名为content_m,里面的模板文件名一样。content文件夹内模板为PC板调用,content_m为移动站调用。

phpcms手机端调用组图

{php $i=0;}
{loop $pictureurls $pic_k $r}
<?php
$pattern ='<img.*?src="(.*?)">';/*更新后需要清除<img>代码*/
preg_match($pattern,$r,$matches);
?>
<li><img src="{thumb($matches[1],640,0)}" width="100%"></li>
{php $i++;}
{/loop}

原文链接:https://www.66kr.com/show-4-14-1.html,转载请注明出处。

举报邮箱:leonbee@qq.com

相关标签: phpcms手机端 wap站点
评论排行