Wow that works (with single quotes rather than double quotes):
ErrorLog "|/bin/grep -v \'File does not exist:\' >> /var/log/httpd/error_log"
Now, how do I test for two error conditions with grep?
not found or unable to stat
File does not exist:
I tried this and let's see if it works:
ErrorLog "|/bin/grep -v \'File does not exist:\' |/bin/grep -v \'not found or unable to stat\' >> /var/log/httpd/error_log"
|