如何让dedecms变成动态网站?
让dedecms变成全站动态浏览有利于企业站
有时候dedecms全站的静态反而对于建设企业站不利
推荐学习:织梦cms
1、首页动态化
我们只要把网站根目录下面生成的index.html删除,
然后把index.php里面的代码修改成
代码如下:
<?phpif(!file_exists(dirname(__FILE__).'/data/common.inc.php')){header('Location:install/index.php');exit();}require_once(dirname(__FILE__)."/include/common.inc.php");require_onceDEDEINC."/arc.partview.class.php";$GLOBALS['_arclistEnv']='index';$row=$dsql->GetOne("Select*From`dede_homepageset`");$row['templet']=MfTemplet($row['templet']);$pv=newPartView();$pv->SetTemplet($cfg_basedir.$cfg_templets_dir."/".$row['templet']);$pv->Display();?>