Forum Moderators: mack
How can I create a url pointer that points to above location. for example simple pointer can be
[somesite.com...]
We set up aphp error document in apache that deciphers pages. So in our apache config I've got a line like:
ErrorDocument 404 redirect.php
which says if it can't find page 'abc', then run redirect.php. Redirect.php deciphers the abc and serves the correct page.
Alternatively, you can probably do a complete rewrite (mapping 'abc' to the long filename) using regular expressions right in the Apache config file. This would take some research on your part I think. But it may be a better way than what I've suggested (not sure if there are implications in using a 404 redirect, but hey, it's working for me).