我正在尝试使用 Google App Engine 的 app.yaml 在请求时自动提供 *.html 文件。所以我的文件结构中有以下内容:
-myapp
-html (folder)
-index.html
-index.py
在我的 app.yaml 我有:
handlers:
-url: /*\.html
static_dir: html
-url: /.*
script: index.app
但是,当我在浏览器 localhost:8080/index.html 上运行它时,我得到一个 404 Not Found。为什么它不路由到我的 index.html 文件?