from flask import Flask, redirect app = Flask(__name__) @app.route('/') def subpath(subpath): return redirect('https://github.com/Harry-zklcdc/go-proxy-bingai/wiki/%E6%BC%94%E7%A4%BA%E7%AB%99', code=302) @app.route('/') def index(): return redirect('https://github.com/Harry-zklcdc/go-proxy-bingai/wiki/%E6%BC%94%E7%A4%BA%E7%AB%99', code=302) if __name__ == '__main__': app.run()