Article Details
Trick To Get Google Pagerank 10 |
| Date Added: September 15, 2007 03:36:51 AM |
| Author: |
| Category: Computers & Internet: Webmaster Resources |
So you want to get into link exchanging, but no one wants to trade with you because your pagerank sucks? You can now use a technique known as 302 Google Jacking to spoof a google pagerank 10.
1. Buy a domain. 2. 301 Redirect the domain either in your .htaccess, PHP header (anything server side) to a page with the desired page rank (If you want a pagerank of 10 then redirect it to google.com). It's better to redirect to something relevant. For example, if you are doing a mortgage site, redirect to a mortgage site. The PHP code for this is: Code:
/*
Code from:
HttpSeo.com - SEO Tips & Techniques
http://www.httpseo.com/
*/
< ?php
header('HTTP/1.1 301 Moved Permanently');
header('location:http://www.YourPR10Domain.com');
exit;
?>
4. Wait for a Google Pagerank Update. Pagerank updates usually happen about every three months (nowadays it is fairly erratic). 5. Now you use any type of cloaking software: Code:
/*
Code from:
HttpSeo.com - SEO Tips & Techniques
http://www.httpseo.com/
*/
< ?php
if(ip is in list) (list of google IPs){
header('HTTP/1.1 301 Moved Permanently');
header('location:http://www.YourPR10Domain.com');
exit;}
else
{
header('Content-Type: text/html; charset=ISO-8859-1?);
//Show your site
};
?>
This further illustrates how useless Google Pagerank has become in measuring a sites importance. *UPDATE* - If you just want to have a pagerank 10 domain, you can just use this code: Code:
/*
Code from:
HttpSeo.com - SEO Tips & Techniques
http://www.httpseo.com/
*/
< ?php
if (strstr($_SERVER['HTTP_USER_AGENT'], "Googlebot")) {
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.google.com/");
exit;
}
else {
header('Content-Type: text/html; charset=ISO-8859-1');
};
?>
< html>
< head>
< title>PR 10 page by httpseo.com< /title>
< /head>
< body>
<p>This page will have a PR of 10, but of course it won’t actually rank for anything, so it’s only useful for selling domains. <A HREF="http://www.httpseo.com/">HttpSeo.com - SEO Tips & Techniques</A></p>
< /body>
< /html>
|