Django Media/Static Files Not Displaying on cPanel Best Fix

Поделиться
HTML-код
  • Опубликовано: 1 дек 2024

Комментарии • 5

  • @studytime6574
    @studytime6574  2 месяца назад

    from django.contrib import admin
    from django.urls import path, include, re_path
    from django.conf import settings
    from django.conf.urls.static import static
    from django.contrib.staticfiles.urls import staticfiles_urlpatterns # new
    from django.conf import settings
    from django.views.static import serve
    urlpatterns = [
    re_path(r'^media/(?P.*)$', serve, {'document_root': settings.MEDIA_ROOT}),
    re_path(r'^static/(?P.*)$', serve, {'document_root': settings.STATIC_ROOT}), ]

  • @jitendrabaghel1774
    @jitendrabaghel1774 Месяц назад

    congratulations Brother you got a new subscriber.
    Thank you so much it's work

  • @jitendrabaghel1774
    @jitendrabaghel1774 Месяц назад

    aapne prompt kiya dala tha chatgpt per

  • @Akometer
    @Akometer 2 месяца назад

    is this a secure approach ?