Erik Funkenbusch wrote:
RewriteRule !^index\.php.* - [C]
RewriteRule ^(.*) index.php?id=$1 [L]
However, this doesn't work with the original form:
http://domain/?id=123
Can anyone offer any suggestions on making this work with the implied
default document and a query string? Thanks.
Use
RewriteRule !^index\.php$ - [C]
RewriteRule ^(.+) index.php?id=$1 [L]
instead, which will not match an empty local filename in directory context.
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]