默认情况下,静态文件似乎不会走 asp.net mvc 的路由,直接会由 iis 返回静态文件,或 404 错误。
这时,需要在 web.config 中配置具体哪些文件需要经过路由处理(在 system.webServer/handlers 下):
<add name="XmlFileHandler" path="*.xml" verb="GET" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
参考:
https://stackoverflow.com/questions/22159419/asp-net-mvc-routing-an-action-with-file-extension
原文地址:https://www.cnblogs.com/xwgli/p/12348358.html
时间: 2024-10-01 05:12:22