On 2/3/07, tyju tiui <[EMAIL PROTECTED]> wrote:

Sorry, you're missing the point I think.

I don't think I missed your point. You want to trigger custom logging
based on the content of the Query string.

The following will do exactly that:

# Set an environment variable when the query string matches a certain string.
# Modify the string you match against according to your requirements.
# In this example any non empty query string matches.
RewriteCond %{QUERY_STRING} !^$
RewriteRule  (.*)   $1 [E=dolog:yes]
# Use the env variable set above to trigger logging to a separate file.
CustomLog logs/querylog  combined env=dolog

Since in your original exampel you tried to set an environment
variable based on the presence of a query string I asumed that you
planned to use this environment variable to trigger custom logging,
and hence I thought that you allready figured out that part of the
solution.

Krist

--
[EMAIL PROTECTED]
Bremgarten b. Bern, Switzerland
--
"...what you don't realize is that in the future Google WILL reach
sentience, will [have had] invent[ed] a time machine, and will [have
had] travel[ed] back in time to prevent Bill Gates... only to become
Bill Gates by accident because of a search engine optimization
miscalculation." (Comment on the Dilbert Blog)

---------------------------------------------------------------------
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]

Reply via email to