如何在Struts2中设置一个页面来自动重定向错误的URL

时间:2012-10-09 08:12:09

标签: jsp struts2

我需要将错误的URL重定向到我的服务器到特定页面。 我怎么能做到这一点?

2 个答案:

答案 0 :(得分:1)

您可以在struts.xml中使用默认操作。请参阅http://struts.apache.org/2.x/docs/action-configuration.html#ActionConfiguration-ActionDefault

如果您需要更复杂的解决方案,Struts2 http://struts.apache.org/2.x/docs/unknown-handlers.html中还有Unknown Handlers

答案 1 :(得分:0)

使用此

<META HTTP-EQUIV="Refresh" CONTENT="0;URL=jsp/login.jsp">

它会自动重定向到网址中指定的位置。