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

要成功,就要长期等待而不焦躁,态度从容却保持敏锐,不怕挫折且充满希望。早安!减少蜗居时间,亲近大自然。

  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的烦恼!

<script type="text/javascript"> document.body.oncopy = function (){ setTimeout(function (){ var text = clipboardData.getData("text"); if (text){ texttext = text + "rn本文转载于DeDeCms模板中心(genban.org)- 织梦模板 DEDECMS企业模板 DEDECMS仿站 dede模板下载:http://www.genban.org-原文链接:"+location.href; clipboardData.setData("text", text); } },100) } </script>



 

本文如何使用DEDECMS模板首页去掉index.html的方法到此结束。幻想者头脑里只有空中楼阁,实干家胸中才有摩天大厦。小编再次感谢大家对我们的支持!

标签: DEDECMS