Configure Apache 2 to specify the same error documents for both 403 (Forbidden) and 404 (Page Not Found) responses

apache-2.2http-status-code-403http-status-code-404httpd.conf

I'd like to know how to configure Apache 2 to specify the same error documents for both 403 (Forbidden) and 404 (Page Not Found) responses. I assume there is a directive to add to httpd.conf, but not sure what it is.

Most of the tutorials I see for doing this are based around .htaccess files, but I want to set this directive globally.

Best Answer

Add in a block like:

ErrorDocument 403 /40x.html
ErrorDocument 404 /40x.html

into the server or virtualhost configuration.

Here's the relevant section of the documentation:

http://httpd.apache.org/docs/2.2/mod/core.html#errordocument