DEDECMS网站首页去除index.php和index.html后缀
DEDECMS网站首页去除index.html后缀
我们知道,搜索引擎一般会认为/和/index.htm是两个不同的页面,输入域名马上就转接到/index.html的,这样路径变长,也不利于SEO,还会分散权重,默认的DEDECMS首页生成静态后,打开我们所用DEDECMS搭建的网站会在域名后面加上index.html路径,一来看的不是太美观,二来传言对SEO有所影响。
最简单最好的方法就是把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了,有疑问可以联系我。
如果不想用上述方法,以万网虚拟主机为例(下图):将默认首页index.htm移到最上面,最高优先级,保存设置,在网站后台更新主页就没有index.html了。
DEDECMS网站首页去除index.php后缀
你是不是要去掉从这进入网站,域名后面的“index.php?upcache=1”小尾巴?
很简单,依次打开文件dede->templets->index2.htm
然后在大概79行找到“<li><a href="../index.php?upcache=1" target="_blank">网站主页</a></li>”
然后改成“<li><a href="../" target="_blank">网站主页</a></li>”即可。
改完后去织梦后台刷新下,再从顶部导航进入首页就不会有小尾巴了。