把index.php全部代码改成以下代码即可!

<?php
//-----------------------------------------------
// DEDECMS 建站工具包
// 网站统一入口,主域名301跳转到www
// 解决首页跳转index.html问题
//-----------------------------------------------
$jump301=1;//是否开启301跳转开关,1开 0关
$index_file='index.html';//首页文件 不支持SSI(shtml/shtm)

if(substr($_SERVER['SERVER_NAME'],0,4)!='www.'&&$jump301)
{
header('HTTP/1.1 301 Moved Permanently');
header('Location:http://www.'.$_SERVER['SERVER_NAME']);
exit();
}

 

if(!file_exists(dirname(__FILE__).'/data/common.inc.php'))
{
    header('Location:install/index.php');
    exit();
}
//自动生成HTML版
if(isset($_GET['upcache']))
{
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_file);
include(dirname(__FILE__).'/'.$index_file);
exit();
}
include(dirname(__FILE__).'/'.$index_file);
?>