可以的,不过为了不和默认主页冲突,不能使用index命名,可以稍改下,比如副主页命名为index2.php,放在根目录,代码如下:
require_once (dirname(__FILE__)."/include/common.inc.php");
require_once DEDEINC.'/arc.partview.class.php';
$tempfile = $cfg_basedir.$cfg_templets_skin.'/index2.htm';//定义模板路径
$pv = new PartView();
$pv->SetTemplet($tempfile);
$pv->Display();
?>
然后在模板风格目录里新建模板index2.htm,访问域名/index2.php即为副主页。