This tutorial will teach you how to create a redirection script that redirects web crawlers as well. This is very useful if you just moved your site to a new domain, and you wanted a page rank quicker.

Code:
<?php

Header ("HTTP/1.1 301 Moved Permanently");
Header ("Location: http://www.yoursite.com");

?>
Created By PHPMini