码迷,mamicode.com
首页 > Web开发 > 详细

resin服务器不能强转http 重定向到https 解决

时间:2015-10-12 11:59:00      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

The URL contains escaped bytes unsupported by the UTF-8 encoding.

该原因为配置的端口不是默认端口80。需要将其他端口改为默认的即可。

在web项目的web.xml 中配置如下

 

<security-constraint>
    <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>

 

resin服务器不能强转http 重定向到https 解决

标签:

原文地址:http://www.cnblogs.com/jimw/p/4870960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!