On Jul 24, 8:08 pm, Eratothene <[EMAIL PROTECTED]> wrote:
> I ran into the problem of Host-based url dispatch.
>
> I need to make something like this:
> urls.py:
>
> if request.META["HTTP_HOST"] = 'blogs.example.com'
>   urlpatterns += (Some patterns)
>
> if request.META["HTTP_HOST"] = 'wikis.example.com'
>   urlpatterns += (Abosolute different patterns)
>
> I have no idea how to make implement this in django, django url
> dispatcher comletely ignores host name. Does anyone has ideas?

Most people would normally use Apache and run two distinct Dango
instances under different VirtualHost containers. One could use either
mod_python, mod_wsgi or mod_fastcgi as the hosting mechanism in
conjunction with Apache to do it.

Graham


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to