Spoof the reciprocal link code given by link directories.
When the directory checks your page it will see there code annex reciprocal link.
When google checks it, it will get a 301 permanent redirect.
Flowing all pagerank to any location you might like.
First you need identify the directory.
You get the urls from the directories and save them as urllist.txt.Code:<?php $i = file ("urllist.txt"); foreach ($i as $q){ echo gethostbyname(trim($q)).'<br>'; }?>
One per line. Run the script above.
It will give all the ip's, with which you can identify directories when they check for the reciprocal link.
Copy/paste the ips it puts out to your notepad and save as ip.gif. (don't forget the .gif extension)
Now get the reciprocal link code from the directories and save them as code.gif. (don't forget the .gif extension)
Upload the script below and with ip.gif and code.gif.
Change the location, which is now google in red, to whatever location you want the pr to flow to.
You can get a large list of directories here;
Code:http://www.blackhatworld.com/blackhat-seo/white-hat-seo/182556-get-largest-list-directories-24000-directories.html
Code:<?php $allow = file('ip.gif'); if(!in_array($_SERVER['REMOTE_ADDR'], $allow) && !in_array($_SERVER["HTTP_X_FORWARDED_FOR"], $allow)) { $location = "http://www.google.com"; header ('HTTP/1.1 301 Moved Permanently'); header ('Location: '.$location); exit(); } else { echo file_get_contents ("code.gif"); } ?>
Similar Threads:



Reply With Quote