Redirection PHP.

 // 301 Moved Permanently
 header("Location: /foo.php",TRUE,301);
 // 302 Found
 header("Location: /foo.php",TRUE,302);
 header("Location: /foo.php");
 // 303 See Other
 header("Location: /foo.php",TRUE,303);
 // 307 Temporary Redirect
 header("Location: /foo.php",TRUE,307);