I wondering if it is possible to manipulate
404 error messages so that when I type
http://www.domain.com/search/categories/computers/?query=laptop
since, the directory and file is not found, 404 handler will be redirected to my index page so that I could get the request directory and turn them into data .... like
I could explode("/",$REDIRECT_URL);
and get the individual string.
and also, it seems that APACHE does not redirect the queries or posted data ... is there i way that i can get the posted or query strings ... and not only the $REDIRECT_URL ???
jun