When a user requests a non-existing page, the servlet container (Tomcat) or application server displays a 404 error page and returns the error code 404. You can configure what happens in the case of a 404 in the web.xml configuration file in the container.

Common solution is to create a custom error page that looks like the rest of your site, tells the visitor in clear terms that the page was not found, and provides some alternative ways to continue such as navigation and a search box.

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

404 is not the only HTTP error code. You can set up landing pages for any of them the same way. See also How to setup a custom 404 handler on the wiki.

#trackbackRdf ($trackbackUtils.getContentIdentifier($page) $page.title $trackbackUtils.getPingUrl($page))
  • No labels