#8874: problem with URLs on FastCGI after update to 1.0
----------------------------+-----------------------------------------------
Reporter: kyprizel | Owner: nobody
Status: new | Milestone:
Component: Core framework | Version: 1.0
Keywords: error | Stage: Unreviewed
Has_patch: 0 |
----------------------------+-----------------------------------------------
all URI resolve to root(/) after updating django from beta to 1.0-release.
here is part of urls.py:
{{{
urlpatterns = patterns('',
(r'^$', 'src.views.main_index'),
(r'^feedback/$', 'src.views.feedback'),
(r'^admin/(.*)', admin.site.root)
)
}}}
trying to access /feedback/ but always get result of
'src.views.main_index'.
--
Ticket URL: <http://code.djangoproject.com/ticket/8874>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---