I have a vhost in which I would like to rewrite / to something like /cgi-bin/script?123. I thought something like this would work, but this rewrites to "/index.html/ somehow.
RewriteEngine On RewriteRule ^/$ /cgi-bin/script.cgi?123 [L] How can you do this?