1. 程式人生 > >定制錯誤頁面

定制錯誤頁面

otf status not customer nbsp http web redirect html

在web.config的<system.web>下加上以下配置

<customErrors mode="On" defaultRedirect="MyErrorPage.html">
  <error statusCode="403" redirect="NoAccess.htm" />
  <error statusCode="404" redirect="FileNotFound.html" />
</customErrors>

mode:開發時設置成On,發布時設置成RemoteOnly

技術分享

定制錯誤頁面