使用SSL重定向循环以在Google App Engine上自定义域

时间:2017-03-21 03:59:52

标签: google-app-engine

我已在Google App引擎上为自定义域设置了SSL。 https://master-console.hkmci.com

我想在应用引擎上为我们的自定义域重定向HTTP流量到HTTPS。 我在配置文件中设置了下面的代码,但是我收到错误消息ERR_TOO_MANY_REDIRECTS

的web.xml

<security-constraint>
    <web-resource-collection>
        <web-resource-name>profile</web-resource-name>
        <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
        <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
</security-constraint>

有什么办法可以解决吗?

感谢。

0 个答案:

没有答案