Is there a simple way to map /robots.txt to a HttpHandler using only the web.config? I've tried all sorts of changes to the httpHandlers tag but none have made any difference. All the examples require modifications to IIS site properties, which I cannot access.
Is there a way using only the web.config to map:
<add verb="*" path="/robots.txt" type="Site.RobotsHandler" />
correctly?
I'm currently using .NET 3.5 and MVC2.