PHP redirect page
In this tutorial I will show you how to redirect pages in PHP. You can find all important aspects and code examples about PHP redirecting.
Tutorial info:
| Name: | PHP redirect page |
| Total steps: | 1 |
| Category: | Basics |
| Date: | 2007-07-09 |
| Product: | See complete product |
Bookmark PHP redirect page
Step 1 - PHP redirect page
PHP redirect page
Time to time it can be useful to redirect your visitor automatically to an other web page. Fortunately redirecting pages using PHP is quite an easy task.
To make a redirection you can use the header() function. This function send a raw HTTP header to the browser. As result the browser will be redirected to the page defined in this new HTTP header. You only have to take care that header() must be called before any actual output is sent. It means you can not use and html tags, echo or print functions. Below is an example how to use redirection in PHP:
Code:
<?php ?>
If you run this code your browser will be display the php.net site. However don't forget that the code after the header function will be executed! So to save resources you should call a die() function after the redirection as you can see below:
Code:
<?php ?>
The only thing you have to do is to change the URL inside the header parameter.
However if you write the echo before the redirection you will get an error like this:
Warning: Cannot modify header information - headers already sent by
To avoid this problem you can use PHP output buffering as follows:
Tags: php redirect, redirecting pages, redirect, php, php redirect page
| PHP redirect page - Table of contents |
|---|
| Step 1 - PHP redirect page |