Custom Error Responsesに従って行います- 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
それとも元のURLになりますか?