为什么我会收到此错误?
找不到页面(404)
使用myproject.urls中定义的URLconf,Django按以下顺序尝试了这些URL模式:
当前网址与其中任何一个都不匹配。
我只是取消注释urls.py中的相关行以启用admin和admindoc。他们都工作;但是当我进入根域(例如example.com)时,我收到了这个错误。
我的urls.py是这样的:
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
# Example:
# (r'^myproject/', include('myproject.foo.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
(r'^admin/', include(admin.site.urls)),
)
提前致谢...
答案 0 :(得分:1)
那是因为您没有为根域定义URL。检查我们的URLconf:它包含您列出的两行,这意味着您只为example.com/admin
和example.com/admin/doc
定义了网址,但不是 example.com
。< / p>