There is an answer to similar question.
But I don't want to route ALL existing files (RouteExistingFiles = true
) and then ignore all of the types I do not need.
Can I be more precise with MVC or IIS settings telling it my intentions?
There is an answer to similar question.
But I don't want to route ALL existing files (RouteExistingFiles = true
) and then ignore all of the types I do not need.
Can I be more precise with MVC or IIS settings telling it my intentions?
Copyright © 2021 Jogjafile Inc.
Finally, I made it the following way:
In RouteConfig.cs:
Where
AnyExistingFileExceptRazorView
is a custom route constraint:ToLower()
is called because I'm not sure which case URL has, and I check the endings expecting the lower case.It's also possible to compare
Path.GetExtension(fielPath) == ".cshtml";