모든 플라스크 경로에 접두사 추가 모든 경로에 추가할 접두사가 있습니다.지금은 모든 정의에서 경로에 상수를 추가합니다.이것을 자동으로 할 수 있는 방법이 있습니까? PREFIX = "/abc/123" @app.route(PREFIX + "/") def index_page(): return "This is a website about burritos" @app.route(PREFIX + "/about") def about_page(): return "This is a website about burritos" 경로를 Blueprint에 넣을 수 있습니다. bp = Blueprint('burritos', __name__, template_folder='templates') @bp.route("/") def ..