当用户在网址中输入项目中不可用的文件名时,我正在尝试重定向到主页。
这是我在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
时,用户正在重定向到主页,但在部署时它无法正常工作 - 它显示运行时错误。