google app engine - error-handlers on app.yaml -
how handle different error codes on app engine? in app.yaml file, have-
error_handlers: - file: error/notfound.html - error_code: over_quota file: error/over_quota.html handlers: ..some handlers..
this doesn't seem work. if site doesn't have folder name foo , user looks http://mysite.com/foo, returns standard 404 error, not page specified on app.yaml.
my static dir separate error dir. both error , static dirs inside project dir. missing?
is there way show custom page rather custom response message?
the 404 error handler page displayed if url fails match patterns in app.yaml. if app returning 404, it's app display error page want - there's no way tell framework display default error page instead.
Comments
Post a Comment