I'm using a standard htaccess ErrorDocument 404 to redirect users to a new page. In order to customize the 404, I need to know their referrer information (from the page they Tried to visit).

$_SERVER['HTTP_REFERER'] is empty

I printed out all of my global variables and most contain the link to pageNotFound.php.

How can I retrieve this information? (Server-Side is preferred)

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

It should be in $_SERVER['HTTP_REFERER'] Yours is mispelled.

link|improve this answer
And so we get onto why you should always run a spell checker over your standards documents before submitting them... – Matthew Scharley Nov 19 '09 at 3:45
Actually, technically the OP spelled referrer correctly. Sadly, the misspelling is in the HTTP spec. – Asaph Nov 19 '09 at 3:46
Sorry typo on my part, but even so I'm left with null: speedcountry.com/page/not_a_real_page.php (last one) – Paul Silvis Nov 19 '09 at 3:46
Nevermind. I'm a moron. Thanks for your help – Paul Silvis Nov 19 '09 at 3:47
It works fine. There I get ...HTTP_HOST : www.speedcountry.com HTTP_REFERER : stackoverflow.com/questions/1760749/… HTTP_USER_AGENT : Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729) ... – wallyk Nov 19 '09 at 3:48
show 1 more comment
feedback

HTTP_REFERER doesn't have a double r. It's an unfortunate misspelling in the HTTP spec.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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