当前位置:首页 > CMS教程 > DeDecms > 列表

怎么去掉dede织梦首页后面的index.html

发布:smiling 来源: PHP粉丝网  添加日期:2014-11-11 15:09:26 浏览: 评论:0 

怎么去掉dede织梦首页后面的index.html?大家知道dedecms系统按照默认的设置安装后,访问首页时候,域名后面总跟随着一个/index.html的后缀,看起来域名变得很长了,另一个也不利于优化权重会分散.

当然有的空间可能默认显示的就是没带index.html,那么就不用考虑这个问题了.

有两种方法可以实现:

第一种:就是在你的空间控制面板中,将index.html默认首页的优先级设为最高,一般的空间都会提供这种功能,这也是最好的,如果万一,不能怎么办呢?别慌有下面的一种方法即可.

第二种:我们找到dede根目录下的index.php文件:代码如下:

在www/ 跟目录下有个自带的index.php文件,原代码:

  1. <?php
  2. //自动生成HTML版 
  3. if(isset($_GET['upcache'])) 
  4. require_once (dirname(__FILE__) . "/include/common.inc.php"); 
  5. require_once DEDEINC."/arc.partview.class.php"
  6. $GLOBALS['_arclistEnv'] = 'index'
  7. $row = $dsql->GetOne("Select * From `dede_homepageset`"); 
  8. $row['templet'] = MfTemplet($row['templet']); 
  9. $pv = new PartView(); 
  10. $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']); 
  11. $pv->SaveToHtml(dirname(__FILE__).'/index.html'); 
  12. include(dirname(__FILE__).'/index.html'); 
  13. exit(); 
  14. else 
  15. header('HTTP/1.1 301 Moved Permanently'); 
  16. header('Location:index.html'); 
  17. ?> 

上面的代码替换为:

  1. require_once (dirname(__FILE__) . "/include/common.inc.php"); 
  2. require_once DEDEINC."/arc.partview.class.php"
  3. $GLOBALS['_arclistEnv'] = 'index'
  4. $row = $dsql->GetOne("Select * From `dede_homepageset`"); 
  5. $row['templet'] = MfTemplet($row['templet']); 
  6. $pv = new PartView(); //开源软件:phpfensi.com 
  7. $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']); 
  8. $pv->Display(); 

然后就可以了,试试吧.

Tags: dede织梦首页 织梦index html

分享到: