当我尝试访问我的网站,它给了我下面的:使用mysite.urls定义的URL配置,Django的尝试这些URL模式,顺序如下:^管理/当前的URL,不符合任何这些。
如果我去到现场,并追加/管理,它需要我来管理页面。 如果我注释掉使管理员,它工作正常。 如何获得两者兼而有之? 在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)),
)