<?php
header('Content-Type:text/html;charset=utf-8');
$xmldata =file_get_contents("https://www.maowuo.cn/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 ='http://data.zz.baidu.com/urls?site=https://www.maowuo.cn&token=zSbGJWnIpLSeM97j';
$ch = curl_init();
$options = array(
CURLOPT_URL => $api,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => 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代码即可搞定,配合宝塔自动提交就可以了!
下面是全站链接自动推送到百度的操作步骤:
在网站根目录新建一个文件夹,在文件夹新建一个 PHP 文件,填写网站 sitemap.xml 地址和百度的推送接口,把文件地址添加到宝塔定时任务,选择访问 URL,自定义执行时间后,保存即可。
请登录后查看回复内容