我的应用程序现在在SSL中运行,在我使用response.sendRedirect("xyz.jsp");
的一个JSP页面中,所以现在当重定向发生时,HTTPS将转换为HTTP。我该如何解决这个问题?
答案 0 :(得分:3)
快速而又脏:在xyz.jsp
的开头添加以下行if(request.getScheme().equals("http")){
String redirect = "https://<your domain>/<path>/xyz.jsp";
response.sendRedirect(redirect);
}