如何重定向到主页,将输入在网址中无法使用的文件名

时间:2017-07-06 12:27:37

标签: c# asp.net-mvc

当用户在网址中输入项目中不可用的文件名时,我正在尝试重定向到主页。

这是我在Global.asax.cs中的代码:

 protected void Application_Error(object sender, EventArgs e) 
 {
   Exception exception = Server.GetLastError();
   Server.ClearError();
   Response.Redirect("/Home/GuestSearch");
 }

它正在本地计算机上工作,即当输入http://localhost:54683/a时,用户正在重定向到主页,但在部署时它无法正常工作 - 它显示运行时错误。

0 个答案:

没有答案