I was talking to a close pal of mine and he showed me a new way to get backlinks, I thought I would share it.
You need to get a secondary site. Set up something simple and contact other webmasters to trade links (reciprocal links). It can be from a different niche.
When you have enough reciprocal links (up to 40) you need to redirect your secondary site to your main site. We will use a 301 redirect. But we will only redirect search engines, not normal users. This way you can continue with the reciprocal links and the other webmasters will not remove the backlinks.
Use this code on the top of the PHP file(s) to redirect all the backlinks to your main site (don 't forget to change your link):
Quote:
Code:
if (preg_match("#(google|slurp@inktomi|yahoo! slurp|msnbot)#si", $_SERVER['HTTP_USER_AGENT'])) {
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.your-main-site.com/");
exit;
}
|
Now you will have one-way backlinks to your main site. Google will redirect the link juice to the main site and will not crawl the backlinks of the other webmasters on the secondary site.