我按照自定义错误响应执行此操作- app.yaml 更新为
error_handlers:
- error_code: over_quota
file: templates/over_quota.html
并创建相应的文件。但是仍然显示错误(异常)而不是该页面。我试图将文件放在根文件夹中(在 app.yaml 进行相应的更新) - 它没有帮助。
我究竟做错了什么?
更新。我根据@Gwyn Howell 评论以下列方式定义了这一点。
handlers:
- url: /over_quota.html
static_files: templates/over_quota.html
upload: templates/over_quota.html
error_handlers:
- error_code: over_quota
file: over_quota.html
但是(1)如何测试它,(2)哪个 url 用户会在结果中看到?http://www.example.com/over_quota.html
还是会是原始网址?