Alright let's say my domain is http://domain.com and I have a CGI
script named index.cgi. That script would be called when going
directly to domain.com.
I was once on a server that allowed me to use query strings like so
with the CGI script:
http://domain.com/?my+query+here
and it worked great when I had a file named index.cgi.
I switched to another host and when I try accessing the script with
the above method it chops off the query string and I just see:
http://domain.com/index.cgi
in the address bar of my browser.
The query string works fine when I use index.cgi?my+query+here but is
there any way I can configure apache (Perhaps in an htaccess file) to
accept:
http://domain.com/?my+query+here when I have an index.cgi?
Thank you..