I wrote .htaccess in file dir/subdir to don't log URI requestrequests in this particular directory. The .htaccess is actually executed by apache (if i write deny from , it works), but if the file hascontains only this rule:
SetEnvIf Request_URI "^dir/subdir" dontlog But apache log the uri requestsDon't work. AllowOverride All and mod_rewrite are enabled in apache configuration file. What can be the problem?
Sorry for my bad english.