from flask import Flask, render_template ... @app.errorhandler(404) def page_not_found(error): return render_template("404.html"), 404