$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_tem […]
織夢建站移動端首頁不更新怎么辦?每次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 ,手機網站就會自動更新了。