Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何强制 Servlet 重定向到欢迎页面,而无需指定确切的路径?就像只是将路径更改为最上面的路径:
response.sendRedirect("/");
这显然不起作用。
response.sendRedirect(response.encodeRedirectURL(request.getContextPath() + "/"));
如果您想支持禁用 cookie 支持的浏览器的会话跟踪(即使用 URL 重写),则需要调用 encodeRedirectURL。
感谢上面的 Michael-O,以下解决方案:
response.sendRedirect(request.getContextPath());