【发布时间】:2025-12-01 14:55:01
【问题描述】:
我在 python 中为我的 google appengine 应用程序提供了以下配置文件:
application: testapp-94974206
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /helloworld
script: helloworld.application
- url: /
script: helloworld.application
当调用不带前缀 (/) 的 url 时,我会调用我的“helloworld”应用程序,而当使用 /helloworld 调用时,我会得到一个 404 not found 错误页面。上面“/helloworld”的声明有什么问题?
【问题讨论】:
标签: python google-app-engine yaml