5

次の構造があるとします。

/root/user/login

青写真でログインを行います。

  app.register_blueprint(login_blueprint,url_prefix=prefix('/user'))

「.index」にリダイレクトできます。

@login_blueprint.route('/login', methods=['GET', 'POST'])
def login():
    if request.method == 'POST':
        #### this redirects me to '/root/user/'
        redirect_to_index= redirect(url_for('.index'))
        response = current_app.make_response(redirect_to_index)
        # do the log in
     return response

    redirect_to_index=redirect(url_for('.index'))

    response = current_app.make_response(redirect_to_index)

リダイレクトにより、次のようになり/root/userます。

redirect(url_for('.index'))

しかし/root、現在の URL ( ) から相対的に (これは )に到達するにはどうすればよい..でしょうか?

4

1 に答える 1