Document virtualization of standard .axd handlers
Brought to you by:
wrowe
"...to deal with the standard handlers (trace.axd, WebResource.axd)"
where does the definition of 'standard' end?
Presuming you want to -generally- go with file-must-exist logic (not use the
+virtual option), then we need to list out -all- of these extensions.
One obvious Apache solution (not so obvious if one is coming from traditional
ASP.NET platforms) is the config fragment...
<Files "*.axd">
AspNet +virtual
</Files>
which -should- cause all requests to somepage.axd to be routed through the
virtual engine without a corresponding file. Please test and help refine
how we can secure 'anticipated' virutal resources.