> # RewriteRule ^(.*)$ coffee.cgi?type=$1

> But apache2 erroneously outputs 'You ordered a coffee.cgi', instead of 'You 
> ordered a mocha'.

When you make a substitution in htaccess with mod_rewrite, the
resulting substitution gets fed back in and rewrites get a chance to
run against the new URL.

So you want to protect this rule so it does not match requests to
coffee.cgi, the simplest way being to prefix with

  RewriteCond %{REQUEST_URI} !=/coffee.cgi

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to