一个基于struts1.x的应用,web页面有如下代码
[code="html"]
即有一个iframe链接到一个action。
action的代码如下
[code="java"]
public ActionForward include(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return new ActionForward("/admin/main.jsp");
}
[/code]
现在有如下问题,当把这个应用部署在tomcat6.x的根目录下,即访问地址是
http://localhost/index.jsp
的时候毫无问题,action执行了正常的跳转。src链接到了main.jsp
但是如果把该应用发布到一个文件夹下
http://localhost/test/index.jsp
就无法执行了,iframe里嵌入了tomcat反馈的400错误。
而且经过我测试,此时的include方法没有得到执行,请问这是怎么回事呢