HTTP Redirection in PHP

Allows to perform PHP redirection (must be placed before any browser output).

  <?php
	/* Source: http://www.apphp.com/index.php?snippet=php-http-redirection */
        // stick your url here
        header('Location: http://you_address/url.php');
        exit;
    ?>

Usage


Comments

Add your comment