redirect

From SkyPHP

Jump to: navigation, search

PHP function to redirect the browser to a different URL. This function must be called before any output and before including the template. This is a shortcut for header('Location: http://XXX');

Example

Permanent 301 Redirect

<?
    redirect('/new-page');
?>

Temporary 302 Redirect

<?
    redirect('/photos/page-1',302);
?>

TODO

  • redirect POST values
Personal tools