找不到页面错误

时间:2009-09-03 18:46:58

标签: django

为什么我会收到此错误?


找不到页面(404)

使用myproject.urls中定义的URLconf,Django按以下顺序尝试了这些URL模式:

  1. ^管理员/ DOC /
  2. ^管理员/
  3. 当前网址与其中任何一个都不匹配。


    我只是取消注释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)),
    )
    

    提前致谢...

1 个答案:

答案 0 :(得分:1)

那是因为您没有为根域定义URL。检查我们的URLconf:它包含您列出的两行,这意味着您只为example.com/adminexample.com/admin/doc定义了网址,但不是 example.com。< / p>