dimanche 24 janvier 2021

How to solve this error of django project?

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

admin/ ^media/(?P.*)$ The empty path didn't match any of these.

from django.contrib import admin
from django.urls import path
from django.conf.urls.static import static
from django.conf import settings
urlpatterns = [
    path('admin/', admin.site.urls),
]

urlpatterns += static(settings.MEDIA_URL , document_root=settings.MEDIA_ROOT)



Aucun commentaire:

Enregistrer un commentaire