网站收录一般都是通过推送,从而加快蜘蛛的爬虫访问,所以就要用到一些网站自带的百度自动推送插件。而有一些网站没有,教大家如何弄一个PHP代码就能自动推送给百度。
接口申请地址:https://ziyuan.baidu.com/linksubmit/
<?php header('Content-Type:text/html;charset=utf-8'); $xmldata =file_get_contents("https://自己网站/sitemap.xml"); $xmlstring = simplexml_load_string($xmldata,'SimpleXMLElement',LIBXML_NOCDATA); $value_array = json_decode(json_encode($xmlstring),true); $url = []; for ($i =0;$i < count($value_array['url']);$i++){ echo $value_array['url'][$i]['loc']."<br/>"; $url[]= $value_array['url'][$i]['loc']; } $api ='百度站长的推送接口'; $ch = curl_init(); $options = array( CURLOPT_URL => $api, CURLOPT_POST => true, CURLOPT_POSTFIELDS => implode("\n",$url), CURLOPT_HTTPHEADER => array('Content-Type:text/plain'), ); curl_setopt_array($ch, $options); $result =curl_exec($ch); echo $result; ?>
在网站根目录下新建php文件,文件名随意,例baidu.php,填写网站sitemap.xml地址和百度站长的推送接口,把自定义的文件地址添加在宝塔计划任务,选择访问URL,自定义执行时间后,保存即可。
本文作者为远梦,转载请注明。