09-14-2007, 05:40 AM
|
#1 (permalink)
|
|
Mybuny.com
Join Date: Mar 2007
Posts: 1,324
|
Trick To Get Google Pagerank 10
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.
|
|
|