0

我通过设置两个指向 Django 的相同 IP 的域,但我可以只登录到一个,另一方面不会让我,从管理员或网络总是将我重定向到日志框,尝试了一切,但没有什么。

在测试环境中,我在运行器和 /etc/hosts 上运行 django,如下所示:

# This if it works
127.0.0.1 talleres.host1.com
# This one does not work
127.0.0.1 talleres.host2.com

我认为问题出在 django 上,但没有开始寻找,有人知道吗?

4

1 回答 1

0

确保您的 ALLOWED_HOSTS 如下所示:

ALLOWED_HOSTS = ['.host1.com',
                 '.host2.com',]
于 2013-10-01T21:01:04.880 回答