Djangoでエラーが出ます
Page not foundと出ます。
また、URLが勝手に変わって別のところに飛びます
ページを表示させたいです。
Djangoで占いアプリを作ろうとしています。
サーバは動いてpowershellにエラーは表示されず、URL先の画面でPage not foundと出ます。
発生している問題・エラー
Page not found (404)
Request Method: GET
Request URL: http://127.0.0.1:8000/accounts/login/?next=/quiz/
Using the URLconf defined in personality_app.urls, Django tried these URL patterns, in this order:
admin/
quiz/
The current path, accounts/login/, 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.
使用言語
Django
自分で試したこと
settings.pyのDEBUG = True
ALLOWED_HOSTS = ['127.0.0.1']
という部分をいろいろ変えてみましたが変化なし
ネットで調べたりしましたがかわらず、
0