关闭维护页面?
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.