Django Media/Static Files Not Displaying on cPanel Best Fix

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ม.ค. 2025

ความคิดเห็น • 8

  • @studytime6574
    @studytime6574  4 หลายเดือนก่อน

    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 3 หลายเดือนก่อน

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

  • @vivienkacou
    @vivienkacou 7 วันที่ผ่านมา

    helpfull

  • @YZTrendingToday
    @YZTrendingToday วันที่ผ่านมา

    Thank you bro, you are genius

    • @studytime6574
      @studytime6574  ชั่วโมงที่ผ่านมา

      no problem bro

  • @jitendrabaghel1774
    @jitendrabaghel1774 3 หลายเดือนก่อน

    aapne prompt kiya dala tha chatgpt per

  • @Akometer
    @Akometer 4 หลายเดือนก่อน

    is this a secure approach ?