tomcat http跳转到https

首先确认网站已经可以http 和https方式访问,然后找到

tomcat/conf/web.xml

这个文件,在这个文件里面的

</welcome-file-list>

后面加上如下代码

<login-config>  
    <!-- Authorization setting for SSL -->  
   <auth-method>CLIENT-CERT</auth-method>  
    <realm-name>Client Cert Users-onlyArea</realm-name>  
</login-config>  
<security-constraint>  
    <!-- Authorization setting for SSL -->  
    <web-resource-collection >  
        <web-resource-name>SSL</web-resource-name>  
       <url-pattern>/*</url-pattern>  
    </web-resource-collection>  
    <user-data-constraint>  
       <transport-guarantee>CONFIDENTIAL</transport-guarantee>  
    </user-data-constraint>  
</security-constraint>  

然后重启tomcat 

tomcat