Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我正在开发的网站中,我将所有图像放在“图像”文件夹中,例如“/图像”。
ASP.NET MVC 3 抛出一个异常,说它找不到“图像”的控制器。
路由表有什么技巧吗?
谢谢
你可以试试
routes.IgnoreRoute("images/");
这将阻止路由尝试为包含此文件夹的请求解析控制器。