在你網站的首頁頂部加上以下代碼(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();
}
?>