一般来说,搜索引擎会认为/和/index.htm是两个不同的页面,输入域名马上就转接到/index.html的,这样路径变长,也不利于SEO,还会分散权重,默认的DEDECMS首页生成静态后,打开我们所用DEDECMS搭建的网站会在域名后面加上index.html路径,一来看的不是太美观,二来传言对SEO有所影响。
方法一:把DEDECMS根目录下的index.PHP内中的代码全部替换成如下代码:
02 |
if (!file_exists( dirname (__FILE__). '/data/common.inc.php' )) |
04 |
header( 'Location:install/index.php' ); |
07 |
require_once ( dirname (__FILE__) . "/include/common.inc.php" ); |
08 |
require_once DEDEINC. "/arc.partview.class.php" ; |
09 |
$GLOBALS[ '_arclistEnv' ] = 'index' ; |
10 |
$row = $dsql->GetOne( "Select * From `dede_homepageset`" ); |
11 |
$row[ 'templet' ] = MfTemplet($row[ 'templet' ]); |
13 |
$pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row[ 'templet' ]); |
替换后,一键更新,清理缓存并清空浏览器缓存,然后再打开看看,是不是没有index.html了。
方法二:通过虚拟机设置
如果不想用上述方法,而且你用的是阿里云虚拟主机,可以将默认首页index.htm移到最上面,最高优先级,保存设置,在网站后台更新主页就没有index.html了。