I'm deploying my WSGI-based Django application to an Apache2 server. Recently, I've noticed several requests going to /_vti_inf.html, which are apparently requests by Microsoft FrontPage or SharePoint to check for FrontPage extensions. Also, I've noticed requests by something called "Microsoft Data Access Internet Publishing Provider Protocol Discovery", which according to information found on the net is also a side-effect of SharePoint.
Since I (obviously) don't have any FrontPage extensions running on my Apache, I want Apache to handle (i.e. block) those instead of routing them to my Python process. But since we are living in a world with viruses, stupid bots, stupid desktop software etc., I wondered whether I should block a lot more than that. Can you recommend some important paths or maybe even a better solution to the problem?