DEDECMS首页删除index.html路径的要领

[摘要]默认的DEDECMS首页生成静态后,打开我们所用DEDECMS搭建的网站会在域名后头加上index.html路径,一来看的不是太雅观,而来传言对SEM有所影响,下面就讲一下DEDECMS首页如何删除index.html路径。

  默认的DEDECMS首页生成静态后,打开我们所用DEDECMS搭建的网站会在域名后头加上index.html路径,一来看的不是太雅观,而来传言对SEM有所影响。

  那就得想步伐去掉,最简朴的要领就是把DEDECMS根目次下的INDEX.PHP内中的代码全部替换成如下:

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

  就这么简朴,替换后即可。清空下你的欣赏器缓存,然后再打开看看,是不是INDEX.HTML没有了。

DedeCms下载:

织梦CMS(DedeCMS) v5.7 SP1 GBK build20150618下载

DEDECMS首页删除index.html路径的方式

界面预览

本文转自:

分享到

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/10269.html