On 12/12/05, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 12/12/05, Richie Hindle <[EMAIL PROTECTED]> wrote: > > I'd like the root page of my site - http://example.com/ - to be served by > > Django. But there also static files that need to live in the root > > directory, eg. robots.txt and favicon.ico. Using Apache/mod_python, can I > > have some root URLs served by Django and some served by Apache? > > You can use "SetHandler None" on a particular <Location> to turn off Django. > > http://www.djangoproject.com/documentation/modpython/#serving-media-files >
I would use the LocationMatch: <LocationMatch "\.(jpg|gif|png)$"> SetHandler None </LocationMatch> and add txt and ico to the regular expression. Bryan