DjangoでWebアプリを本を読みながら作成しています。
Pycharmを使って実装したのですが、下記のようなエラーが発生してしまい、
解決方法と、エラーがどういう意味を示しているのかを教えて頂きたいです。
よろしくお願いいたします。
発生している問題・エラーメッセージ
エラーメッセージ Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000/ Using the URLconf defined in django_app.urls, Django tried these URL patterns, in this order: admin/ hello/ 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
該当のソースコード
python
1(private_diary/diary/urls.py) 2 3from django.urls import path 4 5from . import views 6 7 8app_name = 'diary' 9urlpatterns = [ 10 path('', views.IndexView.as_view(), name="index"), 11] 12
python
1(private_diary/private_dary/urls.py) 2 3from django.contrib import admin 4from django.urls import path, include 5 6urlpatterns = [ 7 path('admin/', admin.site.urls), 8 path('', include('diary.urls')), 9 10
試したこと
コードの確認
補足情報(FW/ツールのバージョンなど)
読んでいる本は「動かして学ぶ!Python Django 開発入門」、大高隆、翔泳社です。
あなたの回答
tips
プレビュー