关闭维护页面?

发布于 2024-10-10 06:36:44 字数 99 浏览 0 评论 0原文

我想在 asp.net mvc 中创建一个停机维护页面,因此无论请求是什么,它都会将其指向 Home/Down

我需要在 global.cs 文件中设置哪些路由器配置?

I want to create a down for maintenance page in asp.net mvc so whatever the request is it will point it to Home/Down

What router configs I need to set in global.cs file?

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

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

发布评论

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

评论(1

可遇━不可求 2024-10-17 06:36:44

您可以使用 App_Offline.htm 文件。只需将具有此名称的 html 文件上传到 ASP.NET 应用程序的路由,所有请求都将路由到该文件。当您准备好将站点重新上线时,只需删除该文件即可。您应该注意一个小问题App_Offline.htm 文件与 ASP.NET MVC 应用程序一起使用时。

You could use an App_Offline.htm file. Simply upload an html file with this name to the route of your ASP.NET application and all requests will route to it. When you are ready to put your site back online simply delete the file. There's a small gotcha you should be aware of when using App_Offline.htm file with an ASP.NET MVC application.

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