是否可以重定向到404和500上的頁面而不是構建自定義響應?我試過 -重定向到404上的頁面錯誤
class NotFoundPageHandler(webapp.RequestHandler):
def get(self):
#if 400
self.redirect('error/notfound.html')
#if 500 how to check
def main():
application = webapp.WSGIApplication(
[
('/', MainPage),
('/index.html', MainPage),
('.*', NotFoundPageHandler)
], debug=True)
但它不起作用。
請不要這樣做。如果出現錯誤,請提供相應的錯誤代碼,請勿將用戶重定向到「錯誤」頁面。它打破了互聯網。 –