Saturday, January 21, 2012

Re: Does Django provide a function that can get the base_url. Ex: http://127.0.0.1:8000/ if on local, www.example.com if on prod?

On Sat, Jan 21, 2012 at 4:32 PM, Chen Xu <xuchen81@gmail.com> wrote:
> Hi, everyone:
> Does Django provide a function that can get the base_url. Ex:
>  http://127.0.0.1:8000/  if on local, www.example.com if on prod?

Yes -- the request object [1] holds that sort of information; in
particular, you're looking for the HttpRequest.get_host() call [2].

[1] https://docs.djangoproject.com/en/1.3/ref/request-response/#httprequest-objects
[2] https://docs.djangoproject.com/en/1.3/ref/request-response/#django.http.HttpRequest.get_host

Yours,
Russ Magee %-)

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment