Request Method: | GET |
---|---|
Request URL: | http://127.0.0.1:8000/blog/hello_world/ |
Using the URLconf defined in pro.urls
, Django tried these URL patterns, in this order:
admin/
The current path, blog/hello_world/
, 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.
在最后的url 输入的时候, 输入127.0.0.1:8000/blog/hello_word, 能出现helloword, 但是前面的是显示404
楼主这个问题解决了吗
这个问题是你的路由配置出现问题了,你需要检查一下这个路由配置了
这是我自己配置的路由,你可以参照看一下,对照一下你的配置有没有什么问题!