打开或关闭网站维护模式的键值始终重定向到维护页面

时间:2018-09-17 19:06:43

标签: c# asp.net-mvc iis-8

根据下面的链接,我创建了一个用于打开或关闭网站维护模式的键值。

但是我面临的问题是,即使我将键值设置为off,仍然所有请求都将重定向到我的维护页面。

Put the website in Maintenance Mode

这是我的代码:

Golbal.asax:

 public void Application_BeginRequest(object sender, EventArgs e)
    {
        if (ConfigurationManager.AppSettings["MaintenanceMode"] == "true")
        {
          //  if (!Request.IsLocal)
          //  {
                HttpContext.Current.RewritePath("Error.htm");
           // }
        }
    }

web.config:

 <add key="MaintenanceMode" value="false"/>

0 个答案:

没有答案