新建一个html.php文件
加入以下代码
<?phpset_time_limit(0);//你网站的CMS根网址,结束不要加 /$baseCmsUrl = "http://www.91084.com";//动态主页的名称$dmPageName = "index.php";//静态主页的名称$stPageName = "index.html";//你希望多长时间更新一次,单位是秒$mkTime = 3600;//下面是执行的代码$tureStFile = dirname(__FILE__).'/'.$stPageName;$ftime = @filemtime($tureStFile);if(!file_exists($tureStFile) || ($ftime < time()-$mkTime)){$body = file_get_contents($baseCmsUrl.'/'.$dmPageName);$fp = fopen($tureStFile, 'w');fwrite($fp, $body);fclose($fp);}?>
然后再首页模板引入下面代码
<script language='javascript' src='html.php'></script>