我有一个应用程序,我在 web.config 中使用了自定义错误。问题是,当我在本地主机上对其进行测试时,它可以正常工作,但是当我将其部署到服务器上时,它却无法正常工作。下面是我在服务器 web.config 文件上使用的 web.config 自定义错误方法。
<customErrors mode="On" defaultRedirect="~/404.aspx?type=error">
<error statusCode="404" redirect="404.aspx?type=404"/>
</customErrors>