Posted By:
Steve_Raeburn
Posted On:
Thursday, June 26, 2003 11:25 PM
You can call an action directly if you need to e.g. /login.do
If you need to access the login page via the servlet container's welcome page you can set up a JSP that redirects(or forwards) to your login action
If your configured welcome page is index.jsp, then in that JSP you can add:
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
You could even use http-equiv="refresh" in a static html file
Steve