如何使用子路径将页面重定向到带参数的struts 1操作?
示例:myserver.com/subpath redirect ti myserver.com/myaction.do?method=init
答案 0 :(得分:0)
你可以试试这个。 使用此短代码在子路径目录中创建index.jsp文件。
<jsp:forward page="myserver.com/myaction.do">
<jsp:param name="method" value="init"/>
</jsp:forward>
或
<% response.sendRedirect("myserver.com/myaction.do?method=init"); %>