织梦sitemap地图实时推送给百度的教程
在之前,织梦有一套自己主动ping百度的插件,但是后来用不了了,最后百度推出了实时推送链接地址到百度,这样要比sitemap方便好用多了,而且还能保证文章的原创,下面我通过查阅相关资料,根据百度的接口写了一篇sitemap地图实时推送给百度的处理办法,分享给大家。
关于织梦的百度实时推送我写了两种方法,大家可以自行选择:
1.手动创建一个文件,每天访问这个文件就可以把当天的全部文章推送到百度搜索引擎. 在根目录下面创建一个tuisong.php 访问后会返回百度接口结果
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
require_once ( "include/common.inc.php" );
require_once "include/arc.partview.class.php" ;
require_once ( 'include/charset.func.php' );
$year = date ( "Y" );
$month = date ( "m" );
$day = date ( "d" );
$dayBegin = mktime (0,0,0, $month , $day , $year ); //当天开始时间戳
$dayEnd = mktime (23,59,59, $month , $day , $year ); //当天结束时间戳
$query = "SELECT arch.id,types.typedir FROM dede_arctype as types inner join dede_archives as arch on types.id=arch.typeid where pubdate<" . $dayEnd . " AND pubdate>" . $dayBegin . "" ; //这里dede换成你们自己的表前缀
$urls = "" ;
$dsql ->Execute( 'arch.id,types.typedir' , $query );
while ( $row = $dsql ->GetArray( 'arch.id,types.typedir' ))
{
$urls .= "http://www.baidu.com" . str_replace ( "{cmspath}" , "" , $row [ 'typedir' ]). "/" . $row [id]. ".html" . "," ;
//将上边的http://baidub.com换成你的网址
}
$urls = substr ( $urls ,0,-1);
$urls = explode ( "," , $urls );
$api = 'http://data.zz.baidu.com/urls?site=www.baidu.com&token=hereistoken' ; // 前边的site换成自己的site xxx换成自己的密钥
$ch = curl_init();
$options = array (
CURLOPT_URL => $api ,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => implode( "\n" , $urls ),
CURLOPT_HTTPHEADER => array ( 'Content-Type: text/plain' ),
);
curl_setopt_array( $ch , $options );
$result = curl_exec( $ch );
echo $result . count ( $urls );
?>
|
查看推送反馈
推送成功
状态码为200,可能返回以下字段:
字段 是否必选 参数类型 说明
success 是 int 成功推送的url条数
remain 是 int 当天剩余的可推送url条数
not_same_site 否 array 由于不是本站url而未处理的url列表
not_valid 否 array 不合法的url列表
成功返回示例:
{
"remain":4999998,
"success":2,
"not_same_site":[],
"not_valid":[]
}
推送失败
状态码为4xx,返回字段有:
字段 是否必传 类型 说明
error 是 int 错误码,与状态码相同
message 是 string 错误描述
失败返回示例:
{
"error":401,
"message":"token is not valid"
}
2、第二种是发布一篇文章,就像百度推送一次,这种比较方便,我就是用这种
打开织梦后台的 article_add.php 文件.找到差不多262行的样子
注意:
如果你系统设置的-》核心选项
如果是否直接. 加入以下代码,否则 注意下面的提示
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//百度推送
$urls = "http://www.baidu.com" . $artUrl ;//前面域名换成你自己的 如果上面图片选择的是是 就把 "http://baidu.com" . 去掉
$urls = explode ( "," , $urls );
$api = 'http://data.zz.baidu.com/urls?site=www.0cx.cc&token=hereistoken' ; // 前边site换成自己的site xxx换成自己的密钥
$ch = curl_init();
$options = array (
CURLOPT_URL => $api ,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => implode( "\n" , $urls ),
CURLOPT_HTTPHEADER => array ( 'Content-Type: text/plain' ),
);
curl_setopt_array( $ch , $options );
$result = curl_exec( $ch );
|
就OK了 ,如果想看添加成功没,可以在修改下面一两行的样子的代码
请选择你的后续操作".$result.$urls[0].":
result是看百度返回的结果,urls是看你推送的url.
基本上就OK了,如果你想让修改文章的时候也事实推送,就类似我上面一样去修改article_edit.php就好了.
以上就是本文的全部内容,希望大家喜欢。
本文由主机测评网发布,不代表主机测评网立场,转载联系作者并注明出处:https://zhuji.jb51.net/dedecms/3163.html