You are here:About>Computing & Technology>PHP / MySQL> Learn PHP> PHP Redirect - Redirect Script - Redirect Web Page
About.comPHP / MySQL
Newsletters & RSSEmail to a friendSubmit to Digg

How To Redirect with PHP

From Angela Bradley,
Your Guide to PHP / MySQL.
FREE Newsletter. Sign Up Now!
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.

  • Users are redirected quickly and seamlessly
  • When using the 'Back' button, the user is taken to the last viewed page, not the redirect page
  • Works on all browsers
Difficulty: Easy
Time Required: 1 Minute

Here's How:

  1. <?php
    header( 'Location: http://www.yoursite.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.

  2. 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://www.yoursite.com/new_page.html' ) ;
    ?>

Tips:

  1. Remove all code but this
  2. Mention on the new page that user's should update their links and bookmarks
  3. You can use this code to create a drop down menu that redirects users pages.
 All Topics | Email Article | | |
Advertising Info | News & Events | Work at About | SiteMap | Reprints | HelpOur Story | Be a Guide
User Agreement | Ethics Policy | Patent Info. | Privacy Policy©2008 About, Inc., A part of The New York Times Company. All rights reserved.