相信你们都很好。
我的 Web 应用程序在 tomcat 6.0.43 上运行,并且不要在前面使用 apache 或 nginx。
我已经使用以下命令强制我的网络从 http 重定向到 https:
- URL 重定向在 ../webapps/ROOT/index.jsp
<% response.sendRedirect("https://www.epi.com.my/portal/"); %>
- ../webapps/myapp/WEB-INF/web.xml
<security-constraint> <web-resource-collection> <web-resource-name>Protected Context</web-resource-name> <url-pattern>/*</url-pattern> </web-resource-collection> <user-data-constraint> <transport-guarantee>CONFIDENTIAL</transport-guarantee> </user-data-constraint></security-constraint>
下面在哪里添加这样的代码
标头添加 Strict-Transport-Security "max-age=15768000"
或者是tomcat没有这个功能吗?或者我需要在我的每个 java web 应用程序控制器中进行修改。