<c:if test="${requestScope.actiList==null}">
<jsp:forward page="acti!toActiList.action"></jsp:forward>
</c:if>以这种方式跳转,无法被struts2拦截,找不到指定路径.这是为什么? <!-- 配置struts2拦截 -->
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
<init-param>
<param-name>config</param-name>
<param-value>
struts-default.xml,
struts-plugin.xml,
../struts2/struts.xml,
../struts2/struts2/userStruts.xml,
../struts2/struts2/actiStruts.xml
</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>配置贴上!!!报错404.这是什么原因?或者用什么方式跳转可以拦截.访问页面是判断值.不存在则跳转查询存值.