404であれば次のようにする.

from flask import render_template

@app.errorhandler(404)
def err404(error):
return render_template('404.html')