Redirect php page To Another web page URL using PHP header loaction redirect script-php redirection

You can easily redirect php page to the different web page using PHP header() function

the following PHP script redirect the user to rajeshstutorials.blogspot.com
<?php
header( 'Location: http://rajeshstutorials.blogspot.com/' ) ;
?>