[Answered ]-How can I solve the error "page not found(404)" in my 1st django project?

1👍

This part of the official docs would be helpful

Try this in your urls.py



urlpatterns = [
    path('admin/', admin.site.urls),
    path('', home, name='home'),
    path('about/', contact, name='contact'),
]

Leave a comment