3

Djangoアプリを正しく構成し、スムーズに実行しました。ただし、管理パネルを有効にすると、次の行のコメントを解除すると404エラーが発生しました。

url(r'^admin/', include(admin.site.urls))

私のサイトにアクセスしようとすると、私はこれを受け取りました:

Using the URLconf defined in cms.urls, Django tried these URL patterns, in this order:

    1. ^admin/

The current URL, , didn't match any of these.

このエラーを回避する方法がわかりません。Djangoの経験がある人は誰でも解決策を持っていますか?ありがとう!

urls.py編集:これがファイル全体です:

from django.conf.urls.defaults 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'^$', 'cms.views.home', name='home'),
    # url(r'^cms/', include('cms.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)),
)
4

1 に答える 1