Friends,
How do I create custom 404 error pages in weblogic 6.1? Thanks
Lawrence
-
Custom 404 (2 messages)
- Posted by: Lawrence Manickam
- Posted on: February 22 2002 18:52 EST
Threaded Messages (2)
- Custom 404 by Dmitry S on February 25 2002 01:55 EST
- Custom 404 by Lawrence Manickam on February 25 2002 11:15 EST
-
Custom 404[ Go to top ]
- Posted by: Dmitry S
- Posted on: February 25 2002 01:55 EST
- in response to Lawrence Manickam
how about adding standard <error-page> entry to web.xml ?
<error-page>
<error-code>404</error-code>
<location>/notfound.jsp</location>
</error-page>
unless weblogic has its own peculiar way of creating error pages, this is a standard way from J2EE specs.
-- mitek -
Custom 404[ Go to top ]
- Posted by: Lawrence Manickam
- Posted on: February 25 2002 11:15 EST
- in response to Dmitry S
Thanks for your reply.
WebLogic has its peculiar way in WL5.1, But I dont find anything in WL6.1
Lawrence