httpd.conf or .htaccess?
I am using an error handler to use regular urls instead of querystrings (e.g. abc.com/index.php/22/33 instead of abc.com/index.php?id1=22&id2=33).The system works fine. The problem now is that every visit is considered error (not found) and logged to apache's error_log.
What modifications should I make to httpd.conf or .htaccess to stop reporting errors (or that specific error) for that domain?
Thanks.