PHP Redirect Sript Web page

You can use a simple PHP script to redirect a user from the page they entered to a different web page. One reason you may want to do this is that the page they are trying to access no longer exists. Using this method, they can be seamlessly transfered to the new page without having to click a link to continue.


go to web file you want to redirect :
add this source code or change all source with this one for more simple:


<?php header( 'Location: http://www.yoursite.com/new_page.html' ) ?>

You need to replace the URL above with the URL you wish to direct to.