更新的问题:
新的弹性beta环境会根据调度规则生成重定向(也是307),而旧的弹性环境则不会。

这会像我的网站一样中断网站,因为重定向的域名是不同的(包括版本标识符,它是完全限定的域名),因此来自我的网站的AJAX请求失败(跨域浏览器限制)。过去,这过去并不是重定向。
Google开发人员可以在这里提供帮助吗?

HTTP/1.1 307 OK
Content-Length: 180
Content-Type: text/html
Date: Thu, 17 Nov 2016 19:01:53 GMT
Location: https://20161118t002457-dot-...
Server: Google Frontend
Via: 1.1 google

<html>
<head><title>307 Temporary Redirect</title></head>
<body bgcolor="white">
<center><h1>307 Temporary Redirect</h1></center>
<hr><center>nginx</center>
</body>
</html>

最佳答案

澄清问题:

在app.yaml中使用新参数env: flex而不是现在不建议使用的参数vm: true时,会发生这种情况

目前(2016年12月)的快速修复是将域从appspot.com更改为appspot-preview.com

According to the GCP Team,当GAE全面可用时,它们将继续提供两个域

07-24 19:23