大家在用織夢(mèng)做站的時(shí)候,應(yīng)該發(fā)現(xiàn)織夢(mèng)安裝完成之后。網(wǎng)站首頁默認(rèn)是帶index.html的后綴,從seo的角度來說這樣很不好,分散了網(wǎng)站的權(quán)重。這樣就會(huì)影響你網(wǎng)站的排名,那么我們?cè)撊绾谓鉀Q這個(gè)問題呢?經(jīng)過聰崽的探討發(fā)現(xiàn)了幾個(gè)解決的方法: 1、如果首頁不需要生成HTML的, 登錄FTP打開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(); //自動(dòng)生成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']); echo $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'); } ?> 全部替換為以下代碼: <?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(); ?> 2、第二種方法: 很多用戶希望頂部導(dǎo)航連接便于SEO,需要去除超鏈接中的“index.html”,我們可以在這里對(duì)標(biāo)簽進(jìn)行一個(gè)修改: {dede:channel type='top'} <li><a href='[field:typeurl function='str_replace("index.html","",@me)'/]'>[field:typename/]</a></li> {/dede:channel} 3、第三種方法: 直接首頁生成靜態(tài)后把index.php 修改為 index.php_ 或者 index-.php 等等隨你的便。只要不是 index.php 就OK了。怎么樣?解決了織夢(mèng)DedeCMS如何去掉首頁域名后面的index.html的問題了吧?
TAG標(biāo)簽: dedecms優(yōu)化 鏈接
|
|