Author Topic: PHP script to redirect from a page to a different web page  (Read 3924 times)

Offline admin

  • Administrator
  • Sr. Member
  • *****
  • Posts: 296
    • View Profile
PHP script to redirect from a page to a different web page
« on: April 28, 2008, 09:32:55 PM »
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:
Code: [Select]
<?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.

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.

Code: [Select]
<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:
Remove all code but this
Mention on the new page that user's should update their links and bookmarks
You can use this code to create a drop down menu that redirects users pages.