首页 > 教程 >
织梦手机站关闭自动生成首页index.html的方法
2023-02-26教程围观次
简介用织梦建站会手机站首页不更新的苦恼,每次PC更新,要去删除m目录下的index.html,手机站首页才会更新,这样很麻烦,通过以下修改,让手机站首页是动态的,不生成index.html,PC端更新后,手机端首页自动更新。把mindex.php里面的$row['showmod']=isset($row['showmod'])?$row['showmod']:0;if($row['showmod']=
用织梦建站会手机站首页不更新的苦恼,每次PC更新,要去删除m目录下的index.html,手机站首页才会更新,这样很麻烦,通过以下修改,让手机站首页是动态的,不生成index.html,PC端更新后,手机端首页自动更新。
把mindex.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_ dir . $cfg_templets_dir . "/" . $row['templet']);$pv->Display();exit(); |
下载链接:网站源码/小程序源码/网站模板下载