Forum Moderators: coopster
www.example.com/account/page.php
This does not exist physically, and the 404 custom php page parses out the /account/ part, and sets it as a session variable.
The script then outputs 200 OK headers and then does:
include("full/server/path/to/page.php")
(or whatever the original filename was)
Unfortunately... I can't access any POST data from page.php now.
How can I send on all POST data universally via the 404 so it can be accessed using the normal method?