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
반응형
'studies > Back-end' 카테고리의 다른 글
[Django] 테이블 다시 만들기, 테이블 컬럼 변경하기, 테이블 바꾸기 (0) | 2020.11.30 |
---|---|
[Django] no such table: django_session 해결 / admin page error (0) | 2020.11.27 |
[MySQL] 명령 프롬포트(콘솔)에서 MySQL 접속, 실행하기 (0) | 2020.11.26 |
[Django] 설치하기 (Window) 가상환경 만들기 (0) | 2020.11.24 |
Jupyter notebook 내가 원하는 경로에 생성하기 (0) | 2020.11.20 |