我已将一个应用程序部署到heroku。该应用程序使用djange,gunicorn。 我尝试使用以下设置将http重定向为https,但无效:
SESSION_COOKIE_SECURE = True
CSRF_COOKIE_SECURE = True
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
SECURE_SSL_REDIRECT = True
PREPEND_WWW = True
BASE_URL = "https://www.etherkar.com"
ALLOWED_HOSTS = ['www.etherkar.com', 'etherkar.com']
任何想法谢谢你