0

I wrote .htaccess in file dir/subdir to don't log URI requests in this particular directory. The .htaccess is actually executed by apache (if i write deny from , it works), but if the file contains only this rule:

 SetEnvIf Request_URI "^dir/subdir" dontlog 

Don't work. AllowOverride All and mod_rewrite are enabled. What can be the problem?

Sorry for my bad english.

1 Answer 1

2

You should have this in your htaccess :

SetEnvIf Request_URI "^/dir/subdir(.*)$" dontlog 

And something like this is you apache config :

CustomLog /var/log/apache2/access.log combined env=!dontlog 

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.