Re: [us...@httpd] Re: Map every request to a single script

2009-08-15 Thread Jaikishan Jalan
After trying out couple of solutions and here is what I did: ScriptAliasMatch ^/(?!index.html).+ "/usr/local/apache2/cgi-bin/test-cgi" So I map every request to my script except those which starts with index.html. I want to keep the default index as index.html , reason being if I make the default

[us...@httpd] Re: Map every request to a single script

2009-08-15 Thread Nicholas Sherlock
jjalan wrote: I am learning Apache HTTP Server and I was wondering what is the best practice to map all the request valid or invalid to a single script on my server. We just: ErrorDocument 404 /index.php A cleaner solution would probably use mod_rewrite to just map everything to the location