重定向 重定向在视图函数的return中,结果为redirect加一个目标则是重定向。 from flask import redirect@app.route('/')def index(): return redirect('http://www.example.com')