使用DEDECMS模板首页去掉index.html的方法

时间:2014-06-26

  DEDECMS模板默认的首页生成后,链接后面会多出一个index.html。官方那边的说法是有利于网站优化

但并非每个人都喜欢首页链接多出一个index.html。想去掉,其实并不难。这里让dedecms模板中心来教你们如何去掉dedeCMS首页链接上的index.html。

有两种方法:

第一:可以联系你的空间商把index.html 设置为默认文档即可

第二:改动根目录下的index.php文件。

 

原代码

<?php

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 `dede_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();

}

else

 

{

 

 header('HTTP/1.1 301 Moved Permanently');

 header('Location:index.html');

}

?>

 

替换为

 

<?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();

?>


这样就可以完全去掉DEDECMS模板建站首页显示index.html的烦恼!



 

上一条:织梦DEDECMS程序数据迁移教程 下一条:dedecms5.7问答模块实现伪静态的方法

相关文章

最新文章