Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Flask custom 404 page

from flask import Flask
app = Flask(__name__)

@app.route("/")
def main():
    return '''
Main
<a href="/not">404 page</a>
'''
from flask import Flask
app = Flask(__name__)

@app.route("/")
def main():
    return '''
Main
<a href="/not">404 page</a>
'''

@app.errorhandler(404)
def not_found(e):
    return "Our Page not found", 404
curl -I http://localhost:5000/not

HTTP/1.0 404 NOT FOUND