dedecms織夢(mèng)程序首頁(yè)如何去除index.html

字號(hào):


    DEDECMS織夢(mèng)CMS建站程序用戶會(huì)發(fā)現(xiàn),輸入地址后,而打開(kāi)的實(shí)際地址后面有個(gè)index.html,下面飛花如夢(mèng)就和大家一起分享下這個(gè)問(wèn)題的兩種解決方法:
    1、把網(wǎng)站默認(rèn)首頁(yè)index.html放到index.php前面,這樣它自動(dòng)讀到index.html就不會(huì)跳轉(zhuǎn)了
    2、把DEDECMS的index.php更改為
    <?php //自動(dòng)生成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
    //自動(dòng)生成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();
    ?>
    其實(shí)主要就是把那段301定向代碼刪除
    header(‘HTTP/1.1 301 Moved Permanently’);
    header(‘Location:index.html’);
    以上兩種方法絕對(duì)能解決dedecms首頁(yè)地址不帶index.html。