我尝试了一些方法来将我的自定义错误页面(例如 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
谁能帮我修复它?
谢谢