猿问

在 Django 上找不到页面 - 空路径

我正在尝试运行这个库。我下载并复制到我的桌面上,然后我尝试使用以下方法运行它:


py -3.7 manage.py runserver

我有:


Starting development server at http://127.0.0.1:8000/

Quit the server with CTRL-BREAK.

但是当我去那个网址时,我不断收到这个错误:


Page not found (404)

Request Method: GET

Request URL:    http://127.0.0.1:8000/

Using the URLconf defined in django_google_authenticator.urls, Django tried these URL patterns, in this order:


^admin/login/$

^admin/

The empty path didn't match any of these.

我不明白出了什么问题,有人可以帮助我吗?提前致谢!


眼眸繁星
浏览 449回答 1
1回答

郎朗坤

我认为这是 Django 的正常行为,正如您所看到的,它说您的路径与任何配置的路径都不匹配,例如 admin,那么您为什么不尝试http://127.0.0.1:8000/admin/访问 Django Admin 登录页面。如果您想使用基本 url 看到与 404 不同的内容,您需要配置您的 url并可能添加重定向视图,这样当使用基本 url 时,它将重定向到您的管理员或其他首选页面。
随时随地看视频慕课网APP

相关分类

Python
我要回答