首先,使用百度搜索引擎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\”?>
- <methodCall>
- <methodName>weblogUpdates.extendedPing</methodName>
- <params>
- <param><value><string>易康论坛</string></value></param>
- <param><value><string>http://bbs.yeacome.com/</string></value></param>
- <param><value><string>http://bbs.yeacome.com/thread-$canshu-1-1.html</string></value></param>
- <param><value><string>http://bbs.yeacome.com/forum.php?mod=rss</string></value></param>
- </params>
- </methodCall>”;
- $res = postUrl(‘http://ping.baidu.com/ping/RPC2’, $baiduXML);
- if ( strpos($res, “<int>0</int>”) )
- {
- 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\”?>
- <methodCall>
- <methodName>weblogUpdates.extendedPing</methodName>
- <params>
- <param><value><string>你的站名</string></value></param>
- <param><value><string>http://你的DZX网址/</string></value></param>
- <param><value><string>http://你的DZX网址 /forum.php?mod=viewthread&tid=$canshu</string></value></param>
- <param><value><string>http://你的DZX网址/forum.php?mod=rss</string></value></param>
- </params>
- </methodCall>”;
- $res = postUrl(‘http://ping.baidu.com/ping/RPC2’, $baiduXML);
- if ( strpos($res, “<int>0</int>”) )
- {
- 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,不成功的话,网址后面会有#号。
- 今天的教程就到这里,大家有什么疑问欢迎来提问。