设置出错跳转页面

iis让404错误显示首页:
<?xml version="1.0"?>
<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="default.html"/>
    </system.web>
</configuration>

tomcat中的设置:

<error-page>
  <error-code>404</error-code>
  <location>/error.html</location>
  </error-page>

如果浏览器不显示web.xml中设置的页面,可以调整浏览器设置:
工具->Internet选项->高级页签->浏览->显示友好http错误信息 去掉对勾。

你可能感兴趣的:(Web)