CSS File not loading in Django [closed]

I have the style.css in the root static folder. When I browse the page or the css file directly in browser, it shows a 404 error.

This the folder structure:

enter image description here

reviews > templates > reviews > base.html:

{% load static %}
<!DOCTYPE html>
<html lang="en">
    <head>            
        <link rel="stylesheet" href="{% static "style.css" %}" />
    </head>        
</html>

Feedback > Feedback > settings.py:

STATIC_URL = '/static/'

STATICFILES_DIRS = [
    BASE_DIR / "static",

]

Error:

GET http://127.0.0.1:8000/static/style.css net::ERR_ABORTED 404 (Not Found)

Вернуться на верх