How To Suppress Apache Error

Solution 1:

grep -v

Really. I mean it. Why manipulate the logs at time of writing?

Edit 1

tail -f -n100 /var/log/httpd/error_log | grep -v 'client denied by server configuration'

If you really want to prevent the error from being written to disk, you can pipe your logs through a script. More details here:

Apache docs