线上服务咨询
dedecms去除首页index.html方法
发表时间:2020-02-21 11:29:00
文章来源:admin
浏览次数:
1、在主机里面设置默认首页,把index.html设置到第一位。
2、替换根目录下index.php内容为:
2、替换根目录下index.php内容为:
if
(!
file_exists
(dirname(
__FILE__
).
'/data/common.inc.php'
))
{
header(
'Location:install/index.php'
);
exit
();
}
require_once
(dirname(
__FILE__
) .
"/include/common.inc.php"
);
require_once
DEDEINC.
"/arc.partview.class.php"
;
$GLOBALS
[
'_arclistEnv'
] =
'index'
;
$row
=
$dsql
->GetOne(
"Select * From `dede_homepageset`"
);
$row
[
'templet'
] = MfTemplet(
$row
[
'templet'
]);
$pv
=
new
PartView();
$pv
->SetTemplet(
$cfg_basedir
.
$cfg_templets_dir
.
"/"
.
$row
[
'templet'
]);
$pv
->Display();
?>