Redirect Web Page

2014 年 5 月 24 日3160

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.

Difficulty: Easy

Time Required: 1 Minute

Here's How:





    <?php







    header( 'Location: http://http://www.zjjv.com///new_page.html' ) ;







    ?>

    Change the code on the redirect page to be simply this. You need to replace the URL above with the URL you wish to direct to.

    Be sure that you do not have any text sent to the browser before this, or it will not work. Your safest bet is to simply remove all content from the page but the redirect code.





    <html>







    <?php







    //this will NOT work, the browser received the HTML tag before the script











    header( 'Location: http://http://www.zjjv.com///new_page.html' ) ;







    ?>

Tips:

0 0