当我尝试将传入流量重定向到 https 时,我得到一个无限重定向循环。
@app.route('/checkout/')
def checkout():
checkout = "https://myapp.herokuapp.com/checkout/"
if checkout != request.url:
print checkout, request.url
return redirect(checkout)
return render_template('checkout.html', key=keys['publishable_key'])
request.url 永远不会更改为前缀 https。我想使用 heroku 的背驮式 ssl 来最小化成本。