我希望能够(静态地)访问我的根目录中的特定文件 google.html。
我在编辑 app.yaml 文件以使其正常工作时遇到问题,因为我不断收到 404 错误。
这是我目前正在做的事情
- url: /(google\.html)
static_files: /\1
upload: /(google\.html)
我也试过
- url: /google.html
static_files: google.html
upload: /google.html
(这是在所有其他处理程序之前添加的)它应该是什么?