Django Page not found(404)
2021. 4. 24. 12:09ㆍ파이썬/Django
mysite/urls.py에 'ocrupload'관련 내용이 빠져서 생긴 오류
urlpatterns = [
path('ocrupload/', include('ocrupload.urls')),
path('mp3/', include('mp3.urls')),
path('ocr/', include('ocr.urls')),
path('gantt/', include('gantt.urls')),
path('admin/', admin.site.urls),
]
'파이썬 > Django' 카테고리의 다른 글
Django 파일업로드 (0) | 2021.04.25 |
---|---|
Django template 파일 (0) | 2021.04.24 |
pytube.exceptions.RegexMatchError: get_ytplayer_config: could not find match for config_patterns (0) | 2021.04.10 |
Forbidden (403) : CSRF verification failed. Request aborted. (0) | 2021.04.10 |
NoReverseMatch : Reverse for 'download' not found. 'download' is not a valid view function or pattern name. (0) | 2021.04.10 |