Forum Moderators: DixonJones
/_vti_bin/owssvr.dll
/MSOffice/cltreq.asp?
These are requests sent by people using IE and MS Office with the Discuss toolbar turned on. As such it doesn't seem they are trying to cause any harm. I have the following rewrite condition in my htaccess file which is what caught the request in the first place:
RewriteCond %{REQUEST_URI} ^/(MSOffice¦_vti) [NC,OR]
The Rewrite rule send the request to my trap script. How do I modify the condition so that I don't catch what seems to be innocent people who have this feature turned on? FWIW I would still like to be able to catch people who are trying to download my site with FrontPage or the like.
Any ideas?
Thank you very much. Sincerely,
Joe Belmaati
Copenhagen Denmark
RewriteCond %{REQUEST_URI} ^/(MSOfficeŚ_vti) [NC]
RewriteCond .* - [F]
RewriteCond %{REQUEST_URI} ^/(MSOfficeŚ_vti) [NC]
RewriteCond !^path_to_custom_403_page\.html$ - [F]
I guess what I am trying to say is; How do I redirect to a page with the [F] rule that acts as an "alternate" 403 page with less drastic meaassures than a site wide ban....