令你的网站获得任意Google PR值的方法
发布时间:2006-10-14 8:48:50   收集提供:gaoqian

在你网站的首页顶部加上以下代码(PHP代码)
在Location: 后面填上一个任意PR值的网址,如 Google.com 就是 10, msn.com 就是 9 了,只要选对网址,哪N(7<N<30)天后,你的网站就会显示相应的PR值了
<?php
if (preg_match("#(google)#si", $_SERVER['HTTP_USER_AGENT']))
{
 header("HTTP/1.1 301 Moved Permanently");
 header("Location:http://www.google.com/");
 exit();
}
?>

 

 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50