欺骗Google 提升网页的PageRank值?

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的值呢?

  1. if(strstr($_SERVER[‘HTTP_USER_AGENT’], “Googlebot”))
  2. {
  3. header(“Status: 301 Moved Permanently”);
  4. header(“Location: http://www.google.com”);
  5. exit();
  6. }

还有就是文章链接的一篇相关文章Spammers hijack web site listings in Google上也有关于这种hijack的相关信息。对被hijack的站点是很有危害的,可能会导致该站点不被google收录等问题。因为google会认为那站点只是你的站点的一个镜像之一。

不过我没有试过这个方法到底可不可行,谁有兴趣可以尝试一下。

2005-03-08 updated: 已经有人实验成功了,详见花儿开了
2005-05-05 updated: 今天又看到了一个:UGiA.CN,呵呵。

7 thoughts on “欺骗Google 提升网页的PageRank值?”

  1. 要是早看到你的文章我就不用试验这么久了~~ 当时我根本就没留意那个法文网站到底写了什么~~~

  2. 我的网站是jsp的, 可以我这样写为什么不行呢, 都快二个月了,pr值还是0
    &lt;%<br>
    String ua = request.getHeader(&quot;user-agent&quot;);<br>
    if (ua != null &amp;&amp; ua.toLowerCase().indexOf(&quot;googlebot&quot;) != -1) {<br>
    response.sendRedirect(&quot;http://www.google.com&quot;)…
    }<br>
    %&gt;<br>

Leave a Reply to tsing Cancel reply

Your email address will not be published. Required fields are marked *