Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
因此,我将我的网站从https://www.example.com URL 转移到了https://example.com,现在登录不知何故停止了工作。我不知道为什么!
我的盲目回答:P
更改为settings.py
settings.py
ALLOWED_HOSTS = ['*'] # not good for production env
做一些更好的事情,比如
ALLOWED_HOSTS = ['*.example.com']