Forwarding 404 not found errors to a jsp...
807567Aug 15 2006 — edited Aug 18 2006Hi,
We are now using the below line in our obj.conf:
Error code="404" fn="set-variable" set-srvhdrs="Location: http://aaa.bbb.ccc.com/handleerror.jsp" error="302" stop="true"
This REDIRECTS the error request to handleerror.jsp.
What we need is FORWARDING the request to that jsp, ie the forwarding process shall be handled in server itself, not redirecting via users browser.
In jsp we use pageContext.forward() to achive this.
Can we use this technique to forward 404 errors to a specific jsp?