I'd like to not log based on a cookie
"WT_FPC=31209:312jkl; JSESSIONID=0000t1mwxTggIv:-1; WASReqURL=/
devadmin; testsite=00004dPVY7ZW8WCbrNswL:126pftqup;
sess=m2gDRsdPQfdseNKtpbTPiJ; ServerIdCookie=mytest.home.com;
LoginIdCookie=JSMITH; SESSIONNUM=69534319"
So not sure if I should do
SetEnvIf LoginIdCookie "JSMITH" dontlog
or
SetEnvIf Cookie "%JSMISTH%" dontlog
Is it even possible?
Cookies are somewhat tricky to match, the following rule should do:
SetEnvIf HTTP_COOKIE "(^| )LoginIdCookie=JSMITH($|;)" dontlog
Docs: http://httpd.apache.org/docs/2.0/mod/mod_setenvif.html#setenvif
--
Klaus Johannes Rusch
Klaus...@atmedia.net
http://www.atmedia.net/KlausRusch/