Forum OpenACS Q&A: How do you customize the error pages from AOLserver/ACS?

How do you customize the error pages in ACS4? A config file
I was using has entries for NotFoundResponse, etc, but I am not sure
where these are used, or if the request processor has some other
mechanism for reporting errors. Is there a consistent mechanism
and dispatch for customizing these response pages?
You need to set the following the config file:

#
# Internal redirects
#
ns_section "ns/server/${server}/redirects"
ns_param 404 "/global/notfound.html"      ;# Not Found error page
ns_param 403 "/global/forbidden.html"     ;# Forbidden error page
ns_param 500 "/global/servererror.html"   ;# Server error page
If you want to use templating then you will need to modify the request processor.