Redirect in PHP
PHP
Use this in a index.php
file when you want to automatically redirect a web user to a new location:
<?php
header( 'Location: target_url_here' );
?>
Use this in a index.php
file when you want to automatically redirect a web user to a new location: