>From what I've read so far in this group what I want probably isn't possible but I'll throw it out there just in case.
On a single production Apache server I'd like to host a main Django application, several sub-applications, the Django admin UI, several Trac projects, and a good number of media files. I'd like a sane, intuitive set of URLs for all of these w/o the need for additional subdomains. Something like this: URL APPLICATION --- ----------- / mydjango.apps.main /accounts mydjango.apps.accounts /forums mydjango.apps.forums /admin Django admin /projects Trac (mod_python) /media Apache Where I stand now is by establishing a <Location "/"> for my main Django app all the rest of the URLs are subsumed by it. Even without this, Django admin has trouble finding its CSS file, depending on the order of my <Location> entries. Solutions/advice appreciated, Darrin