301 – Permanent redirection
—————————
<?php
// Permanent redirection
header(“HTTP/1.1 301 Moved Permanently”);
header(“Location: http://www.somacon.com/”);
exit();
?>
302 – Permanent redirection
—————————
Redirecting a page in PHP
<?php
header(“Location: http://www.domain.com/temporary-address/temporary-file-name.html”);
exit();
?>