首页建站经验 discuz教程:PING快速实现百度秒收录

discuz教程:PING快速实现百度秒收录

一、利用百度搜索引擎的PING RPC2服务功能来达到搜索引擎快速收录帖子(推荐)实现原理:根据百度站长平台的提示,网站程序可以通过PING RPC2服务自动提醒百度搜索引擎收录你的网站…

一、利用百度搜索引擎的PING RPC2服务功能来达到搜索引擎快速收录帖子(推荐)

实现原理:

根据百度站长平台的提示,网站程序可以通过PING RPC2服务自动提醒百度搜索引擎收录你的网站,实时收录的哦!

实现办法:

1、首先新建一个新文件,文件名自定,放Discuz! X论坛的根目录!要自定名字的原因是,虽然百度提倡这么干,但是你不能老重复的提交啊,老虎屁股动不得!所以改名,以免别人捣蛋,你的站K了啥的,就别赖我了!

我这里暂定名为: ping_seo.php这里修改网址,将我的站点地址(http://bbs.yeacome.com)改为你的。

开启了伪静态的ping.php代码用这个:

<?php

if(isset($_GET['action']))

{

$canshu=$_GET['action'];

}

function postUrl($url, $postvar)

{

$ch = curl_init();

$headers = array(

"POST ".$url." HTTP/1.0",

"Content-type: text/xml; charset=/"utf-8/"",

"Accept: text/xml",

"Content-length: ".strlen($postvar)

);

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

curl_setopt($ch, CURLOPT_POSTFIELDS, $postvar);

$res = curl_exec ($ch);

curl_close ($ch);

return $res;

}

$baiduXML = "<?xml version=/"1.0/" encoding=/"utf-8/"?>

weblogUpdates.extendedPing

易康论坛

http://bbs.yeacome.com/

http://bbs.yeacome.com/thread-$canshu-1-1.html

http://bbs.yeacome.com/forum.php?mod=rss

";

$res = postUrl('http://ping.baidu.com/ping/RPC2', $baiduXML);

if ( strpos($res, "0") )

{

header ("Location:http://bbs.yeacome.com/thread-$canshu-1-1.html");

}

else

{

header ("Location:http://bbs.yeacome.com/thread-$canshu-1-1.html#");

}

?>

未启了伪静态的ping.php代码用这个:

<?php

if(isset($_GET['action']))

{

$canshu=$_GET['action'];

}

function postUrl($url, $postvar)

{

$ch = curl_init();

$headers = array(

"POST ".$url." HTTP/1.0",

"Content-type: text/xml; charset=/"utf-8/"",

"Accept: text/xml",

"Content-length: ".strlen($postvar)

);

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

curl_setopt($ch, CURLOPT_POSTFIELDS, $postvar);

$res = curl_exec ($ch);

curl_close ($ch);

return $res;

}

$baiduXML = "<?xml version=/"1.0/" encoding=/"utf-8/"?>

weblogUpdates.extendedPing

你的站名

http://你的DZX网址/

http://你的DZX网址 /forum.php?mod=viewthread&tid=$canshu

http://你的DZX网址/forum.php?mod=rss

";

$res = postUrl('http://ping.baidu.com/ping/RPC2', $baiduXML);

if ( strpos($res, "0") )

{

header ("Location:http://你的DZX网址/forum.php?mod=viewthread&tid=$canshu");

}

else

{

header ("Location:http://你的DZX网址/forum.php?mod=viewthread&tid=$canshu#");

}

?>

2、修改文件source/include/post/post_newthread.php,

Discuz X2.0找到

showmessage('post_newthread_succeed', "forum.php?mod=viewthread&tid=$tid&extra=$extra", $param);

替换为(其中ping_seo为你自己的自定义ping文件名称):

showmessage('post_newthread_succeed', "ping_seo.php?action=$tid", $param);

DZX2.5找到:

showmessage('post_newthread_succeed', $returnurl, $values, $param);

替换为(其中ping_seo为你自己的自定义ping文件名称):

showmessage('post_newthread_succeed', "ping文件的文件名称.php?action=$tid", $values, $param);

OK,简单两步完成,需要花冤枉钱么?

Tips:

如果PING失败,那么你发新帖后跳转的网址最后面会有一个#号!

测试是否PING成功,也可以访问http://你的DZX网址/ping文件的文件名称.php?action=任意新帖子ID,不成功的话,网址后面会有#号。

本文来自网络,不代表1号站长-站长学院|资讯交流平台立场。转载请注明出处: https://www.1cn.cc/jianzhan/jingyan/17884.html
上一篇ECShop安装Piwik脚本进行跟踪功能测试
下一篇 ecshop模板ie9下的切换选项卡问题,不能切换的问
admin

作者: admin

这里可以再内容模板定义一些文字和说明,也可以调用对应作者的简介!或者做一些网站的描述之类的文字或者HTML!

为您推荐

评论列表()

    联系我们

    联系我们

    0898-88888888

    在线咨询: QQ交谈

    邮箱: email@wangzhan.com

    工作时间:周一至周五,9:00-17:30,节假日休息

    关注微信
    微信扫一扫关注我们

    微信扫一扫关注我们

    关注微博
    返回顶部