当我尝试访问我的站点时,它给了我以下信息: 使用 mysite.urls 中定义的 URLconf,Django 按以下顺序尝试了这些 URL 模式: ^admin/ 当前 URL 与其中任何一个都不匹配。
如果我访问该站点并附加 /admin,它会将我带到管理页面。如果我注释掉启用管理员的行,它可以正常工作。我如何获得两者?urlpatterns 中的第一个模式是'',所以我不明白为什么当我启用管理员时会搞砸。(注意:我只是在做教程。)
from django.conf.urls import patterns, include, url
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
# Examples:
#url(r'^$', 'mysite.views.home', name='home'),
# url(r'^x/', include('mysite.foo.urls')),
# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
)