据我了解,Google App Engine 项目中的 app.yaml 文件可以将文件用作“主页”。但是,当我导航到我的域时,它总是给我一个 404。我的 app.yaml 在 war 目录中。这就是我的 app.yaml 的样子:
application: therealtest
version: 10
runtime: python
api_version: 1
handlers:
- url: /
static_files: site/index-static.html
upload: site/index-static\.html
我期望它做的是在我转到该站点的域时显示页面 index-static.html,但它没有。这不是正确的方法吗?谢谢你。