通过 asp.net 映射 .css 和图像文件,甚至使用集成管道和 asp.net MVC 3

发布于 2024-12-29 21:00:10 字数 230 浏览 2 评论 0原文

我在我的 asp.net mvc 3 项目中设置了一些复杂的路由,经过单元测试并正在进行开发。大多数情况下,他们使用 IIS7 和 Integrated Pipeline 并设置 mapAllRequests=true。

但我还对图像和 CSS 的“一些”请求进行了一些时髦的路由。我不确定这是逻辑还是 IIS 在看到 css 或 img 文件时接管。我希望 IIS 在找到静态文件时接管,否则将其发送到 mvc 路由,这可能吗?

I've got some complex routes setup in my asp.net mvc 3 project, unit tested and working on development. For the most part they're working with IIS7 and Integrated Pipeline and having mapAllRequests=true.

But I'm also doing some funky routing with 'some' of the requests for images and css. I'm not sure if it's the logic or if it's IIS taking over when it see's css or img files. I want IIS to take over if it finds the static file otherwise send it to the mvc routing, is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那些过往 2025-01-05 21:00:11

不适用于集成模式下的应用程序池 - 所有请求都会传递到应用程序。默认情况下,MVC 不会路由对静态文件的请求(它将 url 路径映射到它们,就像非 MVC asp.net 一样,这是您想要的行为)。

如果您想在静态文件的响应中执行一些特殊操作,则可以更改该行为 (routes.RouteExistingFiles = true)。有关此属性的详细信息:

ASP.NET MVC RouteExistingFiles 问题

开启时的注意事项RouteExistingFiles

http://msdn.microsoft.com/en -us/library/ie/cc668201.aspx

我希望这有帮助。

Not with app pool in integrated mode - all requests are passed to the application. By default, MVC does not route requests for static files (it maps url-paths to them just like non-mvc asp.net, which is the behavior that you want).

You can change that behavior (routes.RouteExistingFiles = true) if you want to do something special within responses to static files. More info about this property:

ASP.NET MVC RouteExistingFiles question

Considerations when turning on RouteExistingFiles

http://msdn.microsoft.com/en-us/library/ie/cc668201.aspx

I hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文