asp.net mvc url路由到/Folder/Folder/Setup.exe?
我可以像这样使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以忽略特定扩展名的路由: 使路由忽略对文件扩展名的请求
如下所示:
You can ignore routes for a specific extension: Make routing ignore requests for a file extension
Something like this: