in reply to CGI queries without '?'
With this code the user will only see something like: /foo/54236.html in the HTML, but it will be transformed by Apache to /cgi-bin/foo.cgi?id=54236.RewriteEngine on RewriteRule ^/foo/([0-9]+).html$ /cgi-bin/foo.cgi?id=$1 [pt]
|
|---|