Forum Moderators: phranque
RewriteCond %{HTTP_USER_AGENT} MS.*FrontPage [NC]
RewriteRule!^forbidden\.html$ - [F]
Options +FollowSymLinks
RewriteCond %{HTTP_USER_AGENT} MS.*Office [NC,OR]
RewriteCond %{REQUEST_URI} MSOffice [NC]
RewriteRule!^forbidden\.html$ - [F]
Still, I sometimes get between 50 to 100 KB daily requests for:
_vti_bin/owssvr.dll
causing 404s to fill my error_logs.
Any suggestions how I can stop them? Thanks.
You can't really stop them, since this request is a result of having a "web collaboration" option enabled in IE. You could, however, either 403 them or transparently redirect them to an empty text file. This would keep the entries out of your error log, and reduce the wasted bandwidth of serving up your custom 404 page.
RewriteRule \_vti\_bin/owssvr\.dll$ - [F]
RewriteRule \_vti\_bin/owssvr\.dll$ /nullfile.txt [L]
HTH,
Jim