We've expanded our news coverage and improved our search! Visit news.oreilly.com for the latest or search for all things across O'Reilly!
advertisement

Article:
  Custom Error Pages with PHP and Apache
Subject:   I can't get it to work!
Date:   2008-01-01 04:44:13
From:   dawmail333
Response to: I can't get it to work!

Sorry, I fixed it, I needed to change some code:

$loc = isset($_SERVER['REDIRECT_URL']) ? $_SERVER['REDIRECT_URL'] : FALSE;
print($loc);

to:
print($_SERVER['REQUEST_URI']);