今天我們接著碼織夢(mèng)的教程,大家做SEO的都知道網(wǎng)站首頁(yè)的更新頻率直接決定了網(wǎng)站的收錄速度和一部分站點(diǎn)權(quán)重,但是我們不能實(shí)時(shí)的去更新,在這個(gè) 科技如此發(fā)達(dá)的時(shí)代如果我們還在采用最原始的辦法那一定是個(gè)悲劇。沒錯(cuò),就像標(biāo)題寫的一樣,自動(dòng),沒錯(cuò)就是自動(dòng),全自動(dòng)更新首頁(yè)的文章列表。
第一步調(diào)用隨機(jī)文章:
織夢(mèng)給出了隨機(jī)文章調(diào)用的參數(shù)如下:
{dede:arclist sort=’rand’ titlelen=48 row=16}
<li><a href="[field:arcurl/]" title="[field:title/]" target="_blank">[field:title/]</a></li>
{/dede:arclist}
這段列表代碼可以調(diào)用出隨機(jī)文章,并且在每次刷新動(dòng)態(tài)頁(yè)面的時(shí)候都會(huì)變化,但是由于織夢(mèng)是首頁(yè)生成靜態(tài)html的,所以如果不去手動(dòng)生成還是不會(huì)變化,這樣就用到了下面的方法。
第二步設(shè)置定時(shí)自動(dòng)更新文件:
復(fù)制下面代碼,粘貼到一個(gè)新文件中,命名為:autoindex.php,上傳到ftp的plus文件夾中,看清楚一點(diǎn)是plus文件夾中,錯(cuò)了位置不會(huì)生效:
<?php
function sp_input( $text )
{
$text = trim( $text );
$text = htmlspecialchars( $text );
if (!get_magic_quotes_gpc())
return addslashes( $text );
else
return $text;
}
$autotime = 3600;//自動(dòng)更新時(shí)間,單位為秒,這里我設(shè)為一小時(shí),大家可以自行更改。
$fpath = "../data/last_time.inc";//記錄更新時(shí)間文件,如果不能達(dá)到目的,請(qǐng)檢查是否有讀取權(quán)限。
include( $fpath );
if( empty($last_time))
$last_time = 0;
if( sp_input($_GET['renew'])=="now")
$last_time = 0;
if((time()-$last_time)>=$autotime )
{
define('DEDEADMIN', ereg_replace("[/]{1,}",'/',dirname(__FILE__) ) );
require_once(DEDEADMIN."/../include/common.inc.php");
require_once(DEDEINC."/arc.partview.class.php");
/*
$row = $dsql->GetOne("Select * From dede_homepageset");
$dsql->Close();
$templet=$row['templet'];
$position=$row['position'];
*/
$templet = “tnbjh/index.htm”;//這里是首頁(yè)模板位置,當(dāng)前是dede默認(rèn)首面位置。
$position = "../index.html";
$homeFile = dirname(__FILE__)."/".$position;
$homeFile = str_replace("", "/", $homeFile );
$homeFile = str_replace( "http://", "/", $homeFile );
$pv = new PartView();
$pv ->SetTemplet( $cfg_basedir.$cfg_templets_dir."/".$templet );
$pv -> SaveToHtml( $homeFile );
$pv -> Close();
$file = fopen( $fpath, "w");
fwrite( $file, "<?phpn");
fwrite( $file,"$last_time=".time().";n");
fwrite( $file, '?>' );
fclose( $file );
}
?>
然后我們需要在首頁(yè)的模版代碼head標(biāo)簽中加入一段代碼:
<script src="/plus/autoindex.php" language="javascript"></script>
然后點(diǎn)擊后臺(tái)生成,更新首頁(yè)。
這樣就等待驗(yàn)證結(jié)果吧,一點(diǎn)要看清楚上面的注釋,時(shí)間是以秒為單位的,默認(rèn)3600秒是一小時(shí),大家可以自行更改。
以上方法經(jīng)過本人親自測(cè)試有效,大家可以放心使用,如意問題,留言必回。
更多信息請(qǐng)查看IT技術(shù)專欄