asp mvc 2将对特定文件夹中的文件的所有请求路由到给定的控制器/操作
无法让这项工作快速完成。我有一个文件夹,其中有文本文件。 因此,如果用户请求某些文件(例如 mysite.com/thefolder/file.txt),他会看到该文件的内容。 我应该注册什么路由,以便对文件夹中任何内容的所有请求都将转到 mysite.com/Error/NotAllowed 操作?
Can't make this work fast. I have a folder in which I have text files.
And so if user requests some file like mysite.com/thefolder/file.txt he sees the contents of the file.
What route should I register so that all requests to anything in the folder would go to mysite.com/Error/NotAllowed action?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,IIS 将直接提供所有 .txt 文件,甚至无需转至处理路由和 MVC 的 ASP.NET 处理程序。
要更改该行为,您必须更改 IIS 设置或更改其前面的任何防火墙/负载平衡器的路由规则。
IIS will, by default, serve all .txt files directly without even going to the ASP.NET handler, which handles routing and MVC.
To change that behaviour, you will have to change your IIS settings or change the routing rules at any firewall/load balancer you have in front of it.