ASP.NET MVC 404未知响应页面

时间:2012-12-07 15:48:02

标签: asp.net-mvc asp.net-mvc-4

我的MVC应用程序在404上返回以下代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
404
</body>
</html>

问题是我不知道这个回应来自哪里。我想对页面进行一些更改,但是这段代码无处可寻。

1 个答案:

答案 0 :(得分:0)

能够通过将此添加到我的webconfig来解决此问题:

  <system.webServer>
    <httpErrors errorMode="Detailed">
      <remove statusCode="404"/>
    </httpErrors>
  </system.webServer>