我需要重定向
https://ipaddress/index.jsp to https://ipaddress/v1/index.jsp
Tomcat 版本:7.0.32
我在 server.xml 中配置了一个阀门
<Valve className="com.mycompnay.tomcatvalve.RedirectValve" portal="v1" />
在这里,我有一个扩展 ValveBase 的类,并在匹配一些模式后执行 response.sendRedirect。这适用于 GET 请求。但是如何重定向 POST 请求。
提前致谢