从Dark Seo Team上看到的,Bilan du projet pagerank 10 / About pagerank 10 project是对其Pagerank 10的介绍,里面详述了怎样通过欺骗Google来欺骗提升网页的PageRank值。(看不懂法文,猜的)
主要意思应该是说通过对你的网站进行重定向,将网页重定向到一个PR值较高页面,Google会认为你的网站是那个PR值高的页面的所有者,因此你的网站的PR值就和那个页面的PR值一样。
提到的重定向方法有以下四条:
- Redirection 301 : Moved Permanently
- Redirection 302 : Moved Temporarily
- Meta-Refresh à 0 secondes
- Iframes, frames et javascript
然后该文还给了一段示例如何获得PR10的代码:
<?php
// Dark Seo Team Powered Cloakin’ Stuff // -> MakeYouWorkALittle (-;
if (GooglebotStealMyPage&Content)
{
// Code only for Google
header(“Status: 301 Moved Permanently”);
header(“Location: http://www.google.com”);
exit();
}
else {
echo “I Steal His PR””; // visual page for all
// copy here all cool stuff u want
}
?>
代码的意思就是说如果是Google的机器人在搜索布网页,就将页面重定向到http://www.google.com,这样你的页面的PR值就将和http://www.google.com一样。
因此我猜想如果将以下代码加入网页的头部,是否就可以达到欺骗Google,提升PageRank的值呢?
- if(strstr($_SERVER[‘HTTP_USER_AGENT’], “Googlebot”))
- {
- header(“Status: 301 Moved Permanently”);
- header(“Location: http://www.google.com”);
- exit();
- }
还有就是文章链接的一篇相关文章Spammers hijack web site listings in Google上也有关于这种hijack的相关信息。对被hijack的站点是很有危害的,可能会导致该站点不被google收录等问题。因为google会认为那站点只是你的站点的一个镜像之一。
不过我没有试过这个方法到底可不可行,谁有兴趣可以尝试一下。
要是早看到你的文章我就不用试验这么久了~~ 当时我根本就没留意那个法文网站到底写了什么~~~
我还从它那儿发现了我现在用的这个blog系统 🙂
我的网站是jsp的, 可以我这样写为什么不行呢, 都快二个月了,pr值还是0
<%<br>
String ua = request.getHeader("user-agent");<br>
if (ua != null && ua.toLowerCase().indexOf("googlebot") != -1) {<br>
response.sendRedirect("http://www.google.com")…
}<br>
%><br>
<%
String ua = request.getHeader("user-agent");
if (ua != null && ua.toLowerCase().indexOf("googlebot") != -1) {
response.sendRedirect("http://www.google.com");
}
%>
我的网站是jsp的, 可以我这样写为什么不行呢, 都快二个月了,pr值还是0
呵呵,这个我自己没有实验过。有可能是因为google把这个漏洞去除了吧。
if(strstr($_SERVER[‘HTTP_USER_AGENT’], "Googlebot"))
{
header("Status: 301 Moved Permanently");
header("Location: http://www.google.com");
exit();
}
我在我的网站上加上了,为什么不好使啊?
呵呵,Google 好像是四个月才更新一次 Pagerank 吧,不知你说不好使是什么情况?