I have this page:
http://example.com/folder/page.jsp
I would like to redirect/forward, in case of error/exception to the page http://example.com/page.jsp (as you can see the path is different).
doing <jsp:forward page="/page.jsp">
does work but all css and img ref now searches for http://example.com/folder/css , http://example.com/folder/img , without keeping the example.com/page.jsp layout.
How can I fix this?