User Tools

Site Tools


php_redirects

This is an old revision of the document!


PHP Redirects

To create a redirect in PHP from one location to another create an index.php containing the following:

<?
header("location: <newlocation>");
?>

Such as:

<?
header("location: http://www.myotherdomain.com/");
?>

or

<?
header("location: thedirbelow/");
?>
php_redirects.1181645704.txt.gz · Last modified: 2016/11/25 22:38 (external edit)