Trick To Get Google Pagerank 10

liest

Registered Member
Joined
Apr 24, 2008
Messages
85
Reaction score
1
Trick To Get Google Pagerank 10 - HttpSeo.com - SEO Tips & Techniques
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;
?>

3. Link to the page with the redirect from another of your sites that gets regularly spidered by Google.
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
};
?>

The main drawback is that your site will not actually be indexed by Google as long as you are redirecting the Googlebots to other sites, so it?s really only good for link selling/trading. Having said that I wouldn?t claim to have a pagerank 10 site when you?re selling as that?s fraud.
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>

N.B This information is provided for educational purposes only. Black hat SEO tricks can get you banned by google.
Share from other forum.
 
sama sama juga :)
 
anjrit ada tetangga sekampung maen disini,....
 
man....this is so old, and doesn't work anymore for years now!
 
I do not think this works anymore. If I recall correctly this method was also addressed in one of the SES conferences as a reason many sites were de-indexed and a sudden drop in PR.

Although I could be wrong. Someone interested in testing and risk loosing a domain name? Be interested to know for sure if this works. Could be a way to buy and resell domains fairly quickly for a decent profit.
 
Back
Top