dedecms去掉网站首页链接后边的index.html
有时候织梦dedecms网站默认生成首页后,首页的链接后面会多出一个index.html,这个index.html怎么看都不舒服,而且也不利于seo中主页url的统一,所以出于不让首页权重分散考虑,同时也是美观考虑,织梦dedecms网站首页的index.html还是得去掉好。
织梦dedecms首页去掉index.html的几种方法:
1、在空间面板里面找到默认首页设置
把index.html提到最前面
2、修改网站根目录下的index.php文件
如果你在服务器上已经设置了默认文档,依然显示index.html的话,可以用下面的方法解决:
找到网站根目录下的index.php文件
header(‘HTTP/1.1 301 Moved Permanently’);
header(‘Location:index.html’);
把上面这两行换成:
include(dirname(__FILE__).’/index.html’);
exit();
注:很多人觉得我都试了,还不成功,正常是你的网站没有生成更新,或者浏览器没有清空缓存。
3.使用.htaccess文件
目前使用的是这个办法,试验成功。
方法如下:
在根目录的.htaccess里加入以下代码:
DirectoryIndex index.html index.php index.htm
就这么简单。
4、按官方给的更新说明 替换index.php的内容 生成动态,
如果首页不需要生成HTML的, 把index.php换成下面代码,当然如果要生成html就不行了。
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();
?>
暂无评论
发表评论