One more alternative:
you can capture the hostname with mod_rewrite and pass it to your views
using mod_proxy:

RewriteCond     %{HTTP_HOST} ^site-one\.example\.com      [NC]
RewriteRule     ^/(.*)$      /hostname/aware/view/%1/$1  [L,QSA,P]

(I've wrote from memory, it's not tested)

Then it's your view code responsability to filter content using the
hostname received that you should capture with your url configuration.

This is useful if you need to ellaborate on the mod_rewrite part before
reaching your python code.

j.


--~--~---------~--~----~------------~-------~--~----~
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