Answers for "the requested resource was not found on this server. django"

0

the requested resource was not found on this server. django

You're including this file, from this file recursively.

Remove this line, it's redundant because you're writing it from within myrms/urls.py:

path('myrms/', include('myrms.urls')),
Change the URL of your view to match the URL you're accessing:

path('myrms/', views.index,name = 'index'),
Alternatively, access a different URL: http://localhost:8000/

Ensure that ROOT_URLCONF is set to myrms.urls.
Posted by: Guest on March-03-2021

Code answers related to "the requested resource was not found on this server. django"

Python Answers by Framework

Browse Popular Code Answers by Language