Extensionsless URLs (with ExtensionlessUrlHandler-Integrated-4.0
) are working fine in my MVC 4 app, except for paths with dots in them, e.g.
/tags
works fine
/tags/.net
does not work
To make the second URL work I have to either set runAllManagedModulesForAllRequests="true"
or remove the managedHandler
precondition on the UrlRoutingModule-4.0
module and any other module that needs to run for that URL, which means I'm back to square one and all those modules will run for static requests (right?).
Is there a way to use the Extensionsless URLs with dots in the path?