是不是出错了?
配置文件里,Input=mainMenu.jsp
一旦出错,就跳转过去了

解决方案 »

  1.   


    你web 应用开发基础不太好啊... web.xml里面    <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>---><c:redirect url="/mainMenu.html"/>    <servlet-mapping>
            <servlet-name>action</servlet-name>
            <url-pattern>*.html</url-pattern>
        </servlet-mapping>xwork.xml 里面:
            <action name="mainMenu" class="com.opensymphony.xwork.ActionSupport"> 
            <result name="success">/WEB-INF/pages/mainMenu.jsp</result> 
            </action>