大家知道,使用织梦做站,网址后面都会出现index.html这个后缀,虽然不影响SEO,但是也很不好看!
在正常情况,有两个地方会出现index.html,一个是首页自动跳转到index.html,还有一个是在导航的栏目中,下面给大家说说怎么去掉这个index.html。
最简单的方法就是把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没有了。
演示请看本站:http://www.mubanzhijia.com/
以上就是去除dedecms网址中index.html后缀方法。人生之路无须过多准备,只要迈动双脚,路就在你脚下延伸;只要扬帆,就会有八面来风。更多关于去除dedecms网址中index.html后缀方法请关注haodaima.com其它相关文章!