Django can't find URL pattern
问题 I can't figure out why Django is unable to find the requested URL in my application. Here is the error code I get: Using the URLconf defined in littlelogsms.urls, Django tried these URL patterns, in this order: ^admin/ ^$ The current URL, success/, didn't match any of these. Here is my sms.urls.py file: from django.conf.urls import url from sms import views urlpatterns = [ url(r'^success/$', views.success, name='success'), url(r'^$', views.index, name='index') ] Here is the application urls