I have a route that basically looks like this:
Foo/{id}/Files/{*path}
I want it to match a URL such as:
http://mysite/Foo/Bar/Files/Baz.cs
However, I get an HTTP 404.7 error that says "The request filtering module is configured to deny the file extension." I can remove the file extension from request filtering by modifying web.config, but I don't want my source code to be viewable. How should I set this up?