0

我尝试了一些方法来将我的自定义错误页面(例如 error.aspx)部署到我的网站上:

  • 添加了自定义错误:<customErrors mode="On" defaultRedirect="error.aspx" />
  • 添加了http错误: <httpErrors> <remove statusCode="404" subStatusCode="-1" /> <error statusCode="404" prefixLanguageFilePath="" path="error.aspx" responseMode="ExecuteURL" /> </httpErrors>

目前,我可以将此 URL 指向我的自定义错误页面:

http://test.localdev.net/random_text.aspx

但是,对于那些类型的 URL(不支持的扩展名),我失败了,对于这些 URL,IIS 将使用它自己的 404 页面:

http://test.localdev.net/Default.random

谁能帮我修复它?

谢谢

4

1 回答 1

0

您是否在集成模式下使用 iis7 或更高版本?否则我认为您需要在 iis 本身中配置错误页面。

于 2013-01-09T04:40:45.870 回答