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>
# 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.