问问题
1309 次
2 回答
2
这意味着如果 debug 设置为 true,您将只能看到用于调试的回溯。
如果 debug 设置为 false 以呈现 404 视图,则需要在yoursite.settings中配置 ALLOWED_HOSTS 设置,如在本地开发的情况下所说的 ['localhost', '127.0.0.1']。当然,为了呈现 404,您必须在 yourapp.views 中指定它...
于 2013-09-06T05:08:31.787 回答
1
https://docs.djangoproject.com/en/1.6/ref/settings/#allowed-hosts
例子:
ALLOWED_HOSTS = [
'.example.com', # Allow domain and subdomains
'.example.com.', # Also allow FQDN and subdomains
]
或者:
ALLOWED_HOSTS = '*'
于 2014-02-18T07:26:15.880 回答