Tips Tricks Tutorials

WEB-NES-BAY

Learn Tips and tricks on Linux, Hacking, linux, PHP, Perl, Web, Hardware

bookmark bookmark
WEBNESBAY On June - 18 - 2009
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.

Related posts:

  1. Solve: Cannot modify header information – headers already sent
  2. Extend Windows Vista and Windows 9 Activation period
  3. Create excel files using php
  4. Passing a variable from Javascript to PHP
  5. Generating PDF files with PHP and FPDF
  6. Sending SMS Through HTTP Using PHP
  7. Getting started with Delphi for PHP
Categories: PHP

Leave a Reply