I\'m trying to breakout the logging of my website based on directory access, so I\'m seeking an elaboration to this answer (or this answer too): In which file do place the sugge
Head Slap!
Regular expression error:
SetEnvIf Request_URI "^/download/.+$" download_access
should be:
SetEnvIf Request_URI "^/download/.*$" download_access
Note the * versus the +.
*
+