all the ways to address a page in php

PHP
header("Location: /");
exit();header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...< ?php header("Location: http://www.redirect.to.url.com/"); ?>
Source

Also in PHP: