我使用自己的自签名证书配置我的Web应用程序以使用SSL。一切都运行正常,但现在我的整个网站都是https,因为我用过: -
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
但是,我只希望我的登录页面使用SSL而不是完整的站点。我需要在申请中做出哪些更改?
提前致谢:)
答案 0 :(得分:1)
https://...
http://
例如:
<a href="https://<%= request.getServerName() %>/login.jsp">
(你们还需要包括request.getServletContext().getContextPath()
)