Hi Nelson
Check the web.xml for error-page tag and change the location page
accordingly. For example:
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>400</error-code>
<location>/index.jsp</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/403.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/index.jsp</location>
</error-page>
Regards
Tyson
On Wed, Nov 18, 2009 at 5:14 PM, Nelson Biasura <
[email protected]> wrote:
> Hello guys, I want to redirect users if in case there are errors
> encountered or if the URL
> they entered in not available in struts.xml mapping. How can i configure it
> appfuse?
>
> Thanks,
> Nelson
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>