Redirect in 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' );
?>
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
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' );
?>