asp.net mvc url路由到/Folder/Folder/Setup.exe?

发布于 2024-10-25 19:53:07 字数 269 浏览 0 评论 0原文

我可以像这样使用 ASP.NET MVC URL 而不从 Global.asax 重定向到它吗?

http://test.com/product/versions/0.9/Setup.exe

:这种情况下产品是 Controller/versions/0.9/Setup.exe 只是一个 /folder/文件夹/Setup.exe

它应该如何在我的控制器中? 没有行动..或者?

can I use ASP.NET MVC URL like this witout redirect to it from Global.asax?:

http://test.com/product/versions/0.9/Setup.exe

is this case products is Controller and /versions/0.9/Setup.exe just a /folder/folder/Setup.exe

how it should be in my controller?
without action.. or?

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

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

发布评论

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

评论(1

未央 2024-11-01 19:53:07

您可以忽略特定扩展名的路由: 使路由忽略对文件扩展名的请求

如下所示:

routes.IgnoreRoute("{*setupfiles}", new {setupfiles=@"(.*/)?.exe(/.*)?"});

You can ignore routes for a specific extension: Make routing ignore requests for a file extension

Something like this:

routes.IgnoreRoute("{*setupfiles}", new {setupfiles=@"(.*/)?.exe(/.*)?"});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文