본문 바로가기

Programing/웹

[Tomcat] 기본 에러 페이지 오버라이드

keyword: tomcat default error page


https://stackoverflow.com/questions/7066192/how-to-specify-the-default-error-page-in-web-xml



WEB-INF/web.xml 에 에러가 보일때 표시할 페이지를 지정할 수 있다.

예)

<error-page>

    <error-code>404</error-code>

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

</error-page>


WEB-INF/error-location/404.html

에 커스텀 페이지를 만들면 된다.