728x90
๋ฐ์ํ
Page not found (404)
Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:
The empty path didn't match any of these.
You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.
์๋ฌ ๋ฌธ๊ตฌ์ด๋ค.
ํด๊ฒฐ:
urlpatterns = [
# (r'^dramarama/', include('dramarama.urls')),
path('admin/', admin.site.urls),
path('', include('dramarama.urls')),
]
urlpatterns = [
path('', views.index, name='index'),
]
์ง์ด ์ ๋น ์ง๋ค.. ๋ช์๊ฐ์ ํด๋งธ๋ค.
๊ฐ์ ์ฝ๋์ธ๋ฐ ๋๋ค ์๋ฌ๋ค๊ฐ...
728x90
๋ฐ์ํ