dedecms織夢程序首頁如何去除index.html

字號:


    dedecms織夢cms建站程序用戶會發(fā)現,輸入地址后,而打開的實際地址后面有個index.html,下面飛花如夢就和大家一起分享下這個問題的兩種解決方法:
    1、把網站默認首頁index.html放到index.php前面,這樣它自動讀到index.html就不會跳轉了
    2、把dedecms的index.php更改為
    <?php //自動生成html版 require_once (dirname(__file__) . /include/common.inc.php); require_once dedeinc./arc.partview.class.php; $globals['_arclistenv'] = 'index'; $row = $dsql->getone(select * from `); $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
    //自動生成html版
    require_once (dirname(__file__) . /include/common.inc.php);
    require_once dedeinc./arc.partview.class.php;
    $globals['_arclistenv'] = 'index';
    $row = $dsql->getone(select * from `);
    $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();
    ?>
    其實主要就是把那段301定向代碼刪除
    header(‘http/1.1 301 moved permanently’);
    header(‘location:index.html’);
    以上兩種方法絕對能解決dedecms首頁地址不帶index.html。