The Empty Path Didn't Match Any Of These
Using the URLconf defined in personal_portfolio.urls, Django tried these URL patterns, in this order: admin/ projects/ The empty path didn't match any of these. from django.contrib
Solution 1:
try like below.
path('',include('my_app.urls'))
hope it will solve your problem!
Post a Comment for "The Empty Path Didn't Match Any Of These"