Remove errors from the logs

How do you remove generic errors from the logs in iPlanet that I know can be removed?

/MSOffice/cltreq.asp

/_vti_bin/owssvr.dll

This is what I use in apache to get rid of them:

RewriteEngineOn

RewriteRule^/MSOffice/(.*) - [G]

RewriteRule^/_vti_bin/(.*) - [G]

[303 byte] By [jconovera] at [2007-11-26 17:58:38]
# 1

If "iPlanet" means "Sun Java System Web Server 7.0", you could add the following lines immediately below the <Object name="default"> line in the obj.conf configuration file:<If $uri = "/MSOffice/*" or $uri = "/_vti_bin/*">

AuthTrans fn="set-variable" error="410 Gone"

</If>

elvinga at 2007-7-9 5:11:57 > top of Java-index,Web & Directory Servers,Web Servers...
# 2
I have a similar issue but I need help with iplanet 6.1sp5. Anyone out there had any luck with that version?
2133066a at 2007-7-9 5:11:57 > top of Java-index,Web & Directory Servers,Web Servers...
# 3
Anyone found a solution to this problem yet? We have a similar setup too.
qman_lmca at 2007-7-9 5:11:57 > top of Java-index,Web & Directory Servers,Web Servers...
# 4
As I know in 6.1spx, we can't do this. If you really want to do this, please upgrade your WS to 7.0. BTW, 7.0U1 will be available soon.
wyb2005a at 2007-7-9 5:11:57 > top of Java-index,Web & Directory Servers,Web Servers...