Hi there.
I have a custom 404 error page in my java web app. (declared using web.xml) It is working in all the cases. But if the url pattern comes like for example : www.mysite.com/admin/cannotfind the custom error page doesnt locate the images and css java script files for 404 custom error page. But it get works for normal url like www.mysite.com/cannotfind. Anyone tell me why is this behavior.
this is my error page configuration
<error-page>
<error-code>404</error-code>
<location>/error_pages/error_404.jsp</location>
tx :)