首页 >

织梦DedeCMS访问首页时地址后的index.html该如何去掉

织梦访问首页时地址后的index.html该如何去掉

织梦DedeCMS访问首页时地址后的index.html该如何去掉

很多朋友在使用织梦建站或者仿站时都会发现,在访问首页时后面都会添加上index.html

现在就把这解决办法分享出来,大伙可以试一试,看有没有用

在www/ 跟目录下有个自带的index.php文件

原代码

//自动生成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'); } ?> 

把上面的代码替换为

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该如何去掉
  • Downplus成功转换为DeDecms5.3的技巧
  • Downplus成功转换为DeDecms5.3的技巧 | Downplus成功转换为DeDecms5.3的技巧 ...

    织梦DedeCMS访问首页时地址后的index.html该如何去掉
  • 织梦DedeCMS专题页列表分页方法
  • 织梦DedeCMS专题页列表分页方法 | 织梦DedeCMS专题页列表分页方法 ...

    织梦DedeCMS访问首页时地址后的index.html该如何去掉
  • 实现织梦DedeCMS导航栏上栏目分散对齐
  • 实现织梦DedeCMS导航栏上栏目分散对齐 | 实现织梦DedeCMS导航栏上栏目分散对齐 ...