asp mvc 2将对特定文件夹中的文件的所有请求路由到给定的控制器/操作

发布于 2024-10-29 00:38:51 字数 158 浏览 0 评论 0原文

无法让这项工作快速完成。我有一个文件夹,其中有文本文件。 因此,如果用户请求某些文件(例如 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 技术交流群。

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

发布评论

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

评论(1

你的心境我的脸 2024-11-05 00:38:51

默认情况下,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.

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