“Волна возвращает 404” Ответ

Пользовательская колба 404 страницы

from flask import render_template

@app.errorhandler(404)
def page_not_found(e): # e must be in there
    # note that we set the 404 status, this is what it catches
    return render_template('404.html'), 404
AndyIsHereBoi

Волна возвращает 404

I had the same issue. I had it because I changed the parameters SERVER_NAMEof the config to a name which is not the name of the server.

You can solve this bug by removing SERVER_NAME from the config if you have it.
Santino

Ответы похожие на “Волна возвращает 404”

Вопросы похожие на “Волна возвращает 404”

Больше похожих ответов на “Волна возвращает 404” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования