masuharu767
@masuharu767

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

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

1Answer

accounts/login/というパスが設定されていないため、エラーが出ていると思われます。urls.pyファイルで、accounts/login/に対応するURLパターンが定義されているか確認して修正がいる場合は修正したらエラーが出なくなるかと思われます。

0Like

Your answer might help someone💌