Add the following code (PHP code) at the top of the home page of your website
After Location:, fill in a URL with any PR value, such as Google.com is 10, msn.com is 9, just choose the right one URL, after N (7if (preg_match("#(google)#si", $_SERVER[ 'HTTP_USER_AGENT']))
{
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.google.com/");
exit ();
}
?>
http://www.bkjia.com/PHPjc/313775.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/313775.htmlTechArticleAdd the following code (PHP code) to the top of the home page of your website. Fill in an arbitrary PR value after Location: URL, such as Google.com is 10, msn.com is 9, as long as you choose the right URL, which N(...