怎么去掉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文件,原代码:
- <?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(); //开源软件:phpfensi.com
- $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']);
- $pv->Display();
然后就可以了,试试吧.
Tags: dede织梦首页 织梦index html
相关文章
- ·去掉DEDECMS打开首页后会有index.html(2014-11-08)
- ·DedeCMS function='Html2Text(@me)的用法(2014-11-01)
- ·DEDECMS调用字段过滤掉Html标签,并且截取字符串长度 (2014-11-06)
- ·dedecms 生成html时提示 DedeTag Engine Create File(2014-11-08)
- ·域名后面index.html怎么去掉 dedecms做的网站域名后有index.html解(2014-11-13)
- ·dedecms的sitemap.html生成在网站根目录(2015-02-04)
- ·如何去掉DEDE首页index.html(2015-03-17)
- ·dedecms Html2Text(@me)用法介绍(2015-03-24)
- ·加快DEDECMS静态html网页生成方法(2019-01-03)
- ·如何将dedecms网址中的index.html后缀去掉?(2019-01-29)
- ·织梦dedecms中function='Html2Text(@me)的使用方法(2019-02-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)