dedecms解决移动端首页不自动更新问题

,织梦建站移动端首页不更新怎么办?每次PC更新后,还要手动删除m目录下的index.html,手机站首页才会更新,这样是不是让人很烦恼?通过以下修改,让移动端首页变成动态的,不生成index.html,PC端更新后,手机端首页自动更新。 首先打开\m\index.php 把下面这段代码进行替换,$row['showmod'] = isset($row['showmod'])? $row['showmod'] : 0;
if ($row['showmod'] == 1)
{
   $pv->SaveToHtml(dirname(__FILE__).'/index.html');
   include(dirname(__FILE__).'/index.html');
   exit();
} else {
   $pv->Display();
   exit();
}
改成,$pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);
$pv->Display();
exit();
这样就不会生成index.html ,手机网站就会自动更新了。, 
返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册