如何去掉dedecms首页的index.html的方法?

网站建设 0 3068
王施帆工作室宣传图

 

把DEDECMS的index.php更改为

 

<?php   //自动生成HTML版       require_once (dirname(__FILE__) . "/include/common.inc.php");       require_once DEDEINC."/arc.partview.class.php";       $GLOBALS['_arclistEnv'] = 'index';       $row = $dsql->GetOne("Select * From `#@__homepageset`");       $row['templet'] = MfTemplet($row['templet']);       $pv = new PartView();       $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);       $pv->SaveToHtml(dirname(__FILE__).'/index.html');       include(dirname(__FILE__).'/index.html');       exit();   ?>

<?php

//自动生成HTML版

 require_once (dirname(__FILE__) . "/include/common.inc.php");

 require_once DEDEINC."/arc.partview.class.php";

 $GLOBALS['_arclistEnv'] = 'index';

 $row = $dsql->GetOne("Select * From `#@__homepageset`");

 $row['templet'] = MfTemplet($row['templet']);

 $pv = new PartView();

 $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);

 $pv->SaveToHtml(dirname(__FILE__).'/index.html');

 include(dirname(__FILE__).'/index.html');

 exit();

?>

相关推荐:

网友留言:

我要评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。