我已在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>
有什么办法可以解决吗?
感谢。