我的应用程序将被托管在多个域中,我需要在django视图功能中使用域名...如何实现这一目标?我正在使用django 1.3.3。
我想要这样的东西
www.syz.com 127.0.0.1:8000
答案 0 :(得分:1)
查看request.get_host()
Doc:https://docs.djangoproject.com/en/dev/ref/request-response/#django.http.HttpRequest.get_host
或在您的模板中(如果您使用requestContext){{request.get_host}}