tomcat从 http转成https,并且去掉端口号

Posted WhyWin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat从 http转成https,并且去掉端口号相关的知识,希望对你有一定的参考价值。

<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8"/> 

改成

<Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="443" URIEncoding="UTF-8"/> 

 

重启

这样用户也可以去掉端口同时访问http和https了

 

另: 强制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-only Area</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> 

完成以上步骤后,在浏览器中输入http的访问地址也会自动转换为https了

 

以上是关于tomcat从 http转成https,并且去掉端口号的主要内容,如果未能解决你的问题,请参考以下文章

http转成https

Tomcat 8.5 配置自动从http跳转https

tomcat去掉项目名和端口

https经过nginx后struts跳转成http

如何把https开头的网址转换成http

https----------如何在phpstudy环境下配置apache的https访问以及访问http自动跳转成https