如果你的网站已被搜索引擎收录,可以用代码调用搜索引擎进行站内搜索以减小服务器压力,不过搜索引擎还没有收录的文章是搜不到的哦。如果你还不知道你的站用没有被收录可以看《如何判断自己的网站被搜索引擎收录》
下面提供调用Google和百度、雅虎三种搜索引擎的代码。(代码来自月光博客,原文地址http://www.williamlong.info/archives/447.html)
<!–Google站内搜索开始–>
<form method=get action=”http://www.google.com/search”>
<input type=text name=q>
<input type=submit name=btnG value=”Google 搜索”>
<input type=hidden name=ie value=utf-8>
<input type=hidden name=oe value=utf-8>
<input type=hidden name=hl value=zh-CN>
<input type=hidden name=domains value=”www.blogxc.com”>
<input type=hidden name=sitesearch value=”www.blogxc.com”>
</form>
<!–Google站内搜索结束–>
<!–Baidu站内搜索开始–>
<form action=”http://www.baidu.com/baidu”>
<input type=text name=word>
<input type=”submit” value=”Baidu 搜索”>
<input name=tn type=hidden value=”bds”>
<input name=cl type=hidden value=”3″>
<input name=ct type=hidden value=”2097152″>
<input name=si type=hidden value=”www.blogxc.com”>
</form>
<!–Baidu站内搜索结束–>
<!–Yahoo站内搜索开始–>
<form action=”http://www.yahoo.com.cn/search”>
<input type=text name=”p”>
<input type=”submit” value=”Yahoo 搜索”>
<input type=hidden name=vs value=”www.blogxc.com”>
</form>
<!–Yahoo站内搜索结束–>
google搜索式样二(来自梦之都,原文地址http://www.dreamdu.com/webbuild/google_search/)
<!-- SiteSearch Google --> <form method="get" action="http://www.google.com/search"> <div style="background-color:white"> <a href="http://www.google.com/"> <img src="http://www.google.com/logos/Logo_40wht.gif" border="0" alt="Google" /> </a> <input type="text" name="q" size="31" maxlength="255" value="html" /> <input type="hidden" name="ie" value="utf-8" /> <input type="hidden" name="oe" value="utf-8" /> <input type="hidden" name="hl" value="zh-CN" /> <input type="submit" name="btnG" value="Google Search" /> <input type="hidden" name="domains" value="http://www.blogxc.com" /> <input type="radio" name="sitesearch" value=" " /> <label for="sitesearch">搜索WWW</label> <input type="radio" name="sitesearch" value="www.blogxc.com" checked="checked" /> <label for="sitesearch">站长搜索</label></div> </form><!-- SiteSearch Google -->
小菜用的就是上面这个代码,效果请看右上角。
请将代码里的http://www.blogxc.com和www.blogxc.com替换成你的网站,
如http://www.blogxc.com替换成http://www.abc.com,
www.blogxc.com替换成www.abc.com,代码里的文字可以修改,
诺出现乱码请将代码里的utf-8改为GB2312。
更多百度站内搜索可以进百度站长平台查看。>