Is it possible to redirect a user to a different page through the user of PHP?

Say the user goes to www.example.com/page.php and it I want to redirect them to www.example.com/index.php , how would I do so without the use of a meta refresh? Possible?

  • This could even protect my pages from unauthorized users. :]

Please help

link|improve this question

10% accept rate
5  
Have you actually tried Googling for that question? There is an astonishing plethora of web pages that describe this procedure. A minimum effort to find the answer yourself before asking here would have been in order, I think. – Tomalak Apr 20 '09 at 14:16
I'm also pretty sure this question has been asked before. – Calvin Apr 20 '09 at 14:20
7  
@Tomalak: Isn't the spirit of Stackoverflow to be a repository for questions like these? We want this page to come up when you Google for this. That being said, this question is probably a duplicate on this site. – Paolo Bergantino Apr 20 '09 at 14:22
2  
@Paolo Bergantino: I think that it is disputable whether it is okay or not to ask questions here without showing any effort to solve the problem yourself. It's not the question I'm criticizing, it's the lack of thought. It degrades Stack Overflow to a kind of Mechanical Turk implementation for programming trivialities (and: no, it is not disputable if the problem at hand is trivial), where anyone can harvest other peoples time when they are too lazy to look it up themselves. – Tomalak Apr 20 '09 at 14:47
@Paolo Bergantion and Tomalak: it seems you're both right :) One way we can make such questions valuable is by summarizing the wealth of trivial answers to a trivial question so it becomes something more than trivial. As I tried with this one. – markus-tharkun Apr 20 '09 at 14:49
show 5 more comments
feedback

10 Answers

Summary of existing answers plus my own two cents:

1. Basic answer

You can use the header() function to send a new HTTP header, but this must be sent to the browser before any HTML or text (so before the <!DOCTYPE ...> declaration, for example).

header('Location: '.$newURL);

2. Important details

die()

header("Location: myOtherPage.php");
die();

Why you should use die(): The Daily WTF

Absolute URL

The URL must be an absolute. See RFC 2616. But in most cases a relative URL will be accepted too.

Status Codes

PHP's "Location"-header still uses the HTTP 302-redirect code, but this is not the one you should use. You should consider either 301 (permanent redirect) or 303 (other).

Note: W3C mentions that the 303-header is incompatible with "many pre-HTTP/1.1 user agents. Currently used browsers are all HTTP/1.1 user agents. This is not true for many other user agents like spiders and robots.

3. Documentation

HTTP Headers and the header() function in PHP

4. Alternatives

You may use the alternative method of http_redirect($url); which needs the PECL package pecl to be installed.

5. Helper Functions

This function doesn't incorporate the 303 status code:

function Redirect($url, $permanent = false)
{
    header('Location: ' . $url, true, $permanent ? 301 : 302);

    exit();
}

Redirect('http://www.google.com/', false);

This is more flexible:

function redirect($url, $statusCode = 303)
{
   header('Location: ' . $url, true, $statusCode);
   die();
}
link|improve this answer
Some problems with this answer: 303 may not be the "correct" status code. 301 may be desired for Google, for example. Secondly, header('Location: '.$newURL); must be before any HTML (or text) has been passed to the browser, or it will not work correctly. – Django Reinhardt May 27 '11 at 12:30
feedback
function Redirect($url, $permanent = false)
{
    if (headers_sent() === false)
    {
    	header('Location: ' . $url, true, ($permanent === true) ? 301 : 302);
    }

    exit();
}

Redirect('http://www.google.com/', false);

Don't forget to die()/exit()!

link|improve this answer
4  
And don't forget output buffering or you'll end up with 'Headers already sent'. – Kuroki Kaze Apr 20 '09 at 14:36
4  
... and dont forget th print out somthign like "you'll be redirected to $nepage in $n seconds, click $link here if redirect dont happen" Some broser, and some browser's settings, may fail that redirect. – Strae Apr 20 '09 at 15:49
1  
@rmeador... For older browsers and speciality browsers. You should first do your Location header, if fails have a meta-redirect with the "you'll be redirected to page in x seconds" with a link in case the meta-redirect fails. That's the proper and fail-safe way of doing a redirect. – Andrew Moore Apr 20 '09 at 20:48
1  
which browsers are these? – nickf Apr 21 '09 at 0:57
1  
Andrew: how can HTTP browser not respect Location:? – vartec Apr 21 '09 at 7:56
show 3 more comments
feedback

Most of these answers are forgetting a very important step!

header("Location: myOtherPage.php");
die();

Leaving that vital second line out might see you end up on The Daily WTF. The problem is that browsers do not have to respect the headers which your page return, so with headers being ignored, the rest of the page will be executed without a redirect.

link|improve this answer
2  
If it's so important you may want to consider explaining why – Joe Philllips Apr 20 '09 at 14:29
fair call.. editing now. – nickf Apr 20 '09 at 14:31
1  
What's about give some output to the user before kill the script? You know, people love to know what is happenin... – Strae Apr 20 '09 at 15:50
you're assuming that the script has nothing to do except redirect. Which might be not true at all. – vartec Apr 20 '09 at 17:11
@DaNieL: change it to die("Stop ignoring my headers!") – nickf Apr 21 '09 at 0:56
feedback

you can update the header in php: header

link|improve this answer
feedback

Use header() function to send HTTP Location header:

header('Location: '.$newURL);

Contrary to some think, die() has nothing to do with redirection. Use it only if you want to redirect instead of normal execution.

example.php:

<?php 
header('Location: static.html');
$fh = fopen('/tmp/track.txt','a');
fwrite($fh, $_SERVER['REMOTE_ADDR'].' '.date('c')."\n");
fclose($fh);
?>

Result or 3 executions:

bart@hal9k:~> cat /tmp/track.txt
127.0.0.1 2009-04-21T09:50:02+02:00
127.0.0.1 2009-04-21T09:50:05+02:00
127.0.0.1 2009-04-21T09:50:08+02:00

Resuming — obligatory die()/exit() is some urban legend, that has nothing to do with actual PHP. Has nothing to do with client "respecting" Location: header. Sending header does not stop PHP execution, regardless of client used.

link|improve this answer
Documentation? :) – Paolo Bergantino Apr 20 '09 at 14:16
2  
die() or exit() is for clients who don't respect the "Location: ..." header – clawr Apr 21 '09 at 0:59
feedback

Like others here said, sending the location header with:

header( "Location: http://www.mywebsite.com/otherpage.php" );

but you need to do it before you've sent any other output to the browser.

Also, if you're going to use this to block un-authenticated users from certain pages, like you mentioned, keep in mind that some user agents will ignore this and continue on the current page anyway, so you'll need to die() after you send it.

link|improve this answer
feedback

In the eve of the semantic web, correctness is something to consider. Unfortunately, PHP's "Location"-header still uses the HTTP 302-redirect code, which, strictly, isn't the best one for redirection. The one it should use instead, is the 303 one.

W3C is kind enough to mention that the 303-header is incompatible with "many pre-HTTP/1.1 user agents," which would amount to no browser in current use. So, the 302 is a relic, which shouldn't be used.

...or you could just ignore it, as everyone else...

link|improve this answer
feedback

Use the header() function to manipulate the HTTP header and add the Location header field with the absolute URL you want to redirect to:

header('Location: http://www.example.com/index.php');


Edit   The URL must be an absolute. See RFC 2616:

Location       = "Location" ":" absoluteURI

Though most user agents accept relative URLs as well.

link|improve this answer
I think the url doesn't have to be absolute. – lalala2007 May 1 '09 at 15:59
feedback

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

link|improve this answer
feedback

I've already answered this question, but I'll do it again since in the meanwhile I've learnt that there are special cases if you're running in CLI (redirects cannot happen and thus shouldn't exit()) or if your webserver is running PHP as a (F)CGI (it needs a previously set Status header to properly redirect).

function Redirect($url, $code = 302)
{
    if (strncmp('cli', PHP_SAPI, 3) !== 0)
    {
        if (headers_sent() !== true)
        {
            if (strlen(session_id()) > 0) // if using sessions
            {
                session_regenerate_id(true); // avoids session fixation attacks
                session_write_close(); // avoids having sessions lock other requests
            }

            if (strncmp('cgi', PHP_SAPI, 3) === 0)
            {
                header(sprintf('Status: %03u', $code), true, $code);
            }

            header('Location: ' . $url, true, (preg_match('~^30[1237]$~', $code) > 0) ? $code : 302);
        }

        exit();
    }
}

I've also handled the issue of supporting the different HTTP redirection codes (301, 302, 303 and 307), as it was addressed in the comments of my previous answer, here are the descriptions:

  • 301 - Moved Permanently
  • 302 - Found
  • 303 - See Other
  • 307 - Temporary Redirect (HTTP/1.1)
link|improve this answer
feedback

protected by Alix Axel Mar 15 '11 at 7:40

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.