Is there a way to redirect, in a .HTACCESS file, all html docs to a script?
for example
RedirectMatch (.*).html$ ./pagegen.php3?PAGE=$1
something like that.
Only when I do that, apache gives me error messages about not accessing the file (I assume it is actually looking for pagegen.php?Page=). Is there a correct way to do this?