今天我們接著碼織夢的教程,大家做SEO的都知道網(wǎng)站首頁的更新頻率直接決定了網(wǎng)站的收錄速度和一部分站點權(quán)重,但是我們不能實時的去更新,在這個 科技如此發(fā)達(dá)的時代如果我們還在采用最原始的辦法那一定是個悲劇。沒錯,就像標(biāo)題寫的一樣,自動,沒錯就是自動,全自動更新首頁的文章列表。
第一步調(diào)用隨機(jī)文章:
織夢給出了隨機(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ī)文章,并且在每次刷新動態(tài)頁面的時候都會變化,但是由于織夢是首頁生成靜態(tài)html的,所以如果不去手動生成還是不會變化,這樣就用到了下面的方法。
第二步設(shè)置定時自動更新文件:
復(fù)制下面代碼,粘貼到一個新文件中,命名為:autoindex.php,上傳到ftp的plus文件夾中,看清楚一點是plus文件夾中,錯了位置不會生效:
<?php
function sp_input( $text )
{
$text = trim( $text );
$text = htmlspecialchars( $text );
if (!get_magic_quotes_gpc())
return addslashes( $text );
else
return $text;
}
$autotime = 3600;//自動更新時間,單位為秒,這里我設(shè)為一小時,大家可以自行更改。
$fpath = "../data/last_time.inc";//記錄更新時間文件,如果不能達(dá)到目的,請檢查是否有讀取權(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”;//這里是首頁模板位置,當(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 );
}
?>
然后我們需要在首頁的模版代碼head標(biāo)簽中加入一段代碼:
<script src="/plus/autoindex.php" language="javascript"></script>
然后點擊后臺生成,更新首頁。
這樣就等待驗證結(jié)果吧,一點要看清楚上面的注釋,時間是以秒為單位的,默認(rèn)3600秒是一小時,大家可以自行更改。
以上方法經(jīng)過本人親自測試有效,大家可以放心使用,如意問題,留言必回。
更多信息請查看IT技術(shù)專欄