你必须返回重定向:
import osfrom flask import Flask,redirectapp = Flask(__name__)@app.route('/')def hello(): return redirect("http://www.example.com", pre=302)if __name__ == '__main__': # Bind to PORT if defined, otherwise default to 5000. port = int(os.environ.get('PORT', 5000)) app.run(host='0.0.0.0', port=port)请参阅flask文档上的文档。代码的默认值为302,因此
pre=302可以省略或用其他重定向代码(301、302、303、305和307中的一个)替换。



