urlpatterns = [
    url(r'^add$', calc_views.add, name='add'), 
    url(r'^admin/', admin.site.urls),
]
当初就是这么写的 。 然后访问xxx/ 

 

是这么提示的:

Request Method: GET
Request URL: http://127.0.0.1:8000/

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

  1. ^a$ [name='q']
  2. ^admin/

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.

 

……

不多说了。

改回来

  url(r'^$', calc_views.add, name='q'),#根目录

  url(r'^a$', calc_views.add, name='q'), xx/a

相关文章:

  • 2021-05-30
  • 2021-06-09
  • 2021-10-21
  • 2022-01-16
  • 2021-10-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-21
  • 2021-10-08
  • 2021-10-27
  • 2021-10-06
  • 2021-06-24
  • 2021-11-06
  • 2021-05-05
相关资源
相似解决方案