Well, what you can generally do to work around this if you have an
older Django is to create a new file, say, root_urls.py in your
project, and set it up like a normal URLConf, but in it put only a
single pattern:
(r'^your_site_root/', include('your_real_urls.py'),
Then make this your root URLConf.
--
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."