织梦首页调用随机文章定时自动更新,提高收录速度及权重
作者:达特 日期:2023-05-10 分类:CMS教程
相信做过SEO的站长朋友都知道网站首页内容的更新频率直接决定了网站的收录速度和站点权重,这就需要网站首页内容随时更新,但是我们有时候不可能随时的自己去手动更新,这时候,我们就可以给dedecms设置一下首页自动更新,没错,没错就是自动更新,全自动更新首页的文章列表。
设置自动更新首页的具体操作方法如下:
第1步、在首页模板里面添加随机文章调用标签,在这里给大家解释一下为什么要添加随机文章调用标签呢?因为随机调用标签会在每次刷新时调用不同的文章内容,就相当于每次刷新首页都有新内容展示出来,就算是网站文章没有增加也可以。而如果只是普通的文章调用标签,并且在网站内容文章没有增加的情况下刷新首页是不会出现新内容的。具体调用代码如下:
1 |
{dede:arclist sort =’rand’ titlelen=48 row=16} |
2 |
<li><a href= "[field:arcurl/]" title= "[field:title/]" target= "_blank" >[field:title/]</a></li> |
|
上面这段列表代码可以调用出随机文章,并且在每次刷新动态页面的时候都会变化,但是由于织梦是首页生成静态html的,所以如果不去手动生成还是不会变化,这样就用到了下面的方法。
第2步、设置定时自动更新文件
复制下面代码,粘贴到一个新文件中,命名为:autoindex.php,上传到网站根目录的plus文件夹中。
02 |
function sp_input( $text ) |
04 |
$text = trim( $text ); |
05 |
$text = htmlspecialchars( $text ); |
06 |
if (!get_magic_quotes_gpc()) |
07 |
return addslashes( $text ); |
11 |
$autotime = 3600;//自动更新时间,单位为秒,这里我设为一小时,大家可以自行更改。 |
12 |
$fpath = "../data/last_time.inc" ;//记录更新时间文件,如果不能达到目的,请检查是否有读取权限。 |
14 |
if ( empty($last_time)) |
16 |
if ( sp_input($_GET[ 'renew' ])== "now" ) |
18 |
if (( time ()-$last_time)>=$autotime ) |
20 |
define( 'DEDEADMIN' , ereg_replace( "[/\\]{1,}" , '/' , dirname (__FILE__) ) ); |
21 |
require_once(DEDEADMIN. "/../include/common.inc.php" ); |
22 |
require_once(DEDEINC. "/arc.partview.class.php" ); |
24 |
$row = $dsql->GetOne( "Select * From dede_homepageset" ); |
26 |
$templet=$row[ 'templet' ]; |
27 |
$position=$row[ 'position' ]; |
29 |
$templet = “tnbjh/index.htm”;//这里是首页模板位置,当前是dede默认首面位置www.80zhan.com织梦模板 |
30 |
$position = "../index.html" ; |
31 |
$homeFile = dirname (__FILE__). "/" .$position; |
32 |
$homeFile = str_replace( "\\" , "/" , $homeFile ); |
33 |
$homeFile = str_replace( "//" , "/" , $homeFile ); |
35 |
$pv ->SetTemplet( $cfg_basedir.$cfg_templets_dir. "/" .$templet ); |
36 |
$pv -> SaveToHtml( $homeFile ); |
38 |
$ file = fopen( $fpath, "w" ); |
39 |
fwrite( $ file , "<?php\n" ); |
40 |
fwrite( $ file , "\$last_time=" . time (). ";\n" ); |
41 |
fwrite( $ file , '?>' ); |
|
然后我们需要在首页的模版代码head标签中引入下面这段代码,也就是引入这个php文件:
<script src="/plus/autoindex.php" language="javascript"></script>
完成以上步骤后在后台点击生成-更新首页。
这样就能实现首页内容定时自动更新了,一定要看清楚上面的注释,时间是以秒为单位的,默认3600秒是一小时,大家可以自行更改。