Situation....
I wget 'ed a dynamic site and now need to serve it statically for a while and the filenames are like...
page.php?foo=bar
And apache kicks a 404 because it's trying to serve page.php, which doesn't exist, and pass it a query string of foo=bar. So I need to tell apache to just serve page.php?foo=bar as the actual filename OR
I could make a php script that takes $redirectPage as an variable and does a redirect to that page and make apache rewrite the url page.php?foo=bar to redirecter.php?redirectFile=page.php?foo=bar. Problem is...I am not really familar with rewrite on apache and need this to be up and running in hours. So...any help?
Andy