I don't know if it's the correct way to deal with it, but adding a line ilke that one: ('','djangoshots.root.index'), into my urls.py allowed me to match an empty request to a specific controller. But, the drawback is that any invalid urls are matched by it too. Oh, and it need to be the last one. Put it sooner in the urls list, and it will match before the legitimate match.
On Thu, Jun 5, 2008 at 2:45 PM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Hallo Django Users, > > I'm experiencing some problems with the url pattern configuration for > IE. > When we wanted to put a django application into production one of our > testers found a problem in IE which i couldn't found the answer to. > > My url patterns are the following > (r'^$','services.serviceAuth.views.overview'), > (r'^overview/$','services.serviceAuth.views.overview') > > when someone wants to enter the web application without specifying a > path like > > http://bioinf-dev/ > > it will give an error in IE. When i have debug mode on it just > presents all the available urls saying that specific url doesn't > exist. Is there something that i'm doing wrong here. I thought that > the url pattern r'^$' should capture when someone doesn't specify a > path. > > Can anyone help me with this problem. > > Any help is greatly appreciated. > > Regards, > > Richard Mendes > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---