将
<customErrors mode="Off" defaultRedirect="~/404.html"> mode 设置为off 就可以看到哪里出错了不会反回状态码了。 设置为on 就会有错误页面显示
<error statusCode="403" redirect="~/404.html" />
<error statusCode="404" redirect="~/404.html" />
<error statusCode="400" redirect="~/404.html" />
<error statusCode="500" redirect="~/404.html" />
</customErrors>