步驟一、申請百度站長帳號,驗證網站,只有驗證了,才能使用百度站長裏面功能,具體操做請參考《如何快速在百度站長平臺上完成網站驗證》;javascript
步驟二、向百度提交網站域名,告訴百度有新網站存在,須要登錄百度站長。提交地址:http://zhanzhang.baidu.com/linksubmit/urlphp
步驟三、在百度站長左側導航中找到「網頁抓取」-「連接提交」,有兩種提交方式一種是自動提交,另一種是手動提交,主要的仍是自動提交功能添加,一、主動推送功能,二、自動推送功能,三、網站地圖功能,具體操做請參考《如何給網站添加百度連接提交功能》html
步驟四、在百度站長左側導航中找到「搜索展示」-「站點屬性」-「主體備案號」,添加網站備案號,注意:好比深度網的備案號是「粵ICP備12078025號」就好了,後面的-x無需填寫,若是出現一些問題提示,多提交幾回便可。java
按照以上四個步驟操做,網站收錄仍是很快,前提是網站質量好,在深度網作的營銷網站,按照以上步驟,網站收錄快則1天,慢則不會超過一個禮拜,這是小編本身試驗過的。固然更多的仍是須要堅持更新原創優質內容,堅持作高質量網絡推廣,這樣網站收錄愈來愈多,關鍵詞排名愈來愈好。以上就是深度網小編分享的我的經驗,但願可以幫助你們!web
http://www.seoshijie.com/wangzhan/56.htmlajax
查詢網頁是否被被堵收錄網絡
<?php $cxurl="www.meiye5.com/html/n212.html"; function okBaidu($url){ $url='http://www.baidu.com/s?wd='.$url; $curl=curl_init(); curl_setopt($curl,CURLOPT_URL,$url); curl_setopt($curl,CURLOPT_RETURNTRANSFER,1); $rs=curl_exec($curl); curl_close($curl); if(!strpos($rs,'提交網址')){ echo "已收錄"; }else{ echo "未收錄"; } } echo okBaidu($cxurl); ?> html: <html> <head> <script type="text/javascript"> function baidushoulu(){ $.ajax({ type: "POST", url: "/php/baidushoulu.php",//提交到後臺文件 data: $('#form').serialize(),//表單傳值 success: function(data) { $("#baidushoulu").html(data);//以html的形式顯示在指定id的元素裏 } }); return false; } function demo(){ var nv = document.getElementById("baidushoulu"); nv.innerHTML="正在查詢...";setTimeout('baidushoulu()',500); } </script> </head> <body> <p> 測試一下吧,複製一個網址到文本框: <span id="baidushoulu"> <span style="color:#ff0000;font-weight:900;"> × 未收錄 </span> <a target="_blank" style="margin-left:10px;color:#6d6d6d;" href="https://www.baidu.com/s?wd=www.nongyejing.com/11,html"> [去百度查看結果] </a> </span> </p> <form id="form"> <input onkeydown="if(event.keyCode==13){event.keyCode=0;event.returnValue=false;}" id="textfields" name="baidushoulu" autocomplete="off" style="width:70%;margin-right:3%;" /> <a onclick="demo()" style="color: rgb(255, 255, 255); text-decoration: none; cursor: pointer; font-family: 微軟雅黑; display: inline-block; width: 140px; text-align: center; background:rgb(0, 124, 212); line-height: 30px; border-radius: 10px; position: relative; margin-right: 20px;"> 查詢 </a> </form> </body> </html>
<?php header("Content-type: text/html; charset=utf-8"); function checkBaidu($url) { $url = 'http://www.baidu.com/s?wd=' . $url; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $rs = curl_exec($curl); curl_close($curl); $arr = parse_url($url); if (strpos($arr['query'], 'http://')) { $arr['query'] = str_replace('http://', '', str_replace('wd=', '', $arr['query'])); } else { $arr['query'] = str_replace('wd=', '', $arr['query']); } if (strpos($arr['query'], '?')) { $str = strstr($arr['query'], '?'); $arr['query'] = str_replace($str, '', $arr['query']); } if (strpos($arr['query'], '/')) { $narr = explode('/', $arr['query']); $arr['query'] = $narr[0]; } if (strpos($rs, '<b>'.$arr['query'].'</b>')) { return 1; } else { return 0; } } echo checkBaidu('http://www.jbxue.com/article/1.html'); ?>