the requested resource was not found on this server django

Solutions on MaxInterview for the requested resource was not found on this server django by the best coders in the world

showing results for - "the requested resource was not found on this server django"
Yuna
05 Aug 2020
1You're including this file, from this file recursively.
2
3Remove this line, it's redundant because you're writing it from within myrms/urls.py:
4
5path('myrms/', include('myrms.urls')),
6Change the URL of your view to match the URL you're accessing:
7
8path('myrms/', views.index,name = 'index'),
9Alternatively, access a different URL: http://localhost:8000/
10
11Ensure that ROOT_URLCONF is set to myrms.urls.