Ошибка 404 редиректа не работает в Django и статические файлы не отображаются в edge

Я разрабатываю одностраничный webapp, где я пытаюсь настроить страницу ошибки, если страница не найдена, поэтому я добавил соответствующие настройки, но все равно мой редирект не работает на странице ошибки.

Вот мой файл settings.py

А ниже приведен мой urls.py

from django.contrib import admin
from django.urls import path
from ArchanaComputersHome import views
from django.conf.urls import handler404
from django.conf import settings
from django.conf.urls.static import static


handler404 = views.page_not_found

urlpatterns = [
    path('', views.index, name='home'),
    path('contact', views.contact, name='contact'),
    path('admission-request', views.admission_request, name='admission_request'),
    
]

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


admin.site.site_header = "Archana Computers"
admin.site.site_title = "Archana Computers Admin Portal"
admin.site.index_title = "Welcome to Archana Computers Admin Portal"

А вот моя функция page_not_found

def page_not_found(request, exception=None):
    """
    This function handles the 404 page not found error.

    Parameters:
    - request: The HTTP request object.

    Returns:
    - A rendered HTML template for the 404 page not found error.

    Raises:
    - None
    """
    title = 'Page Not Found'
    context = {
        'title': title
    }
    return render(request, 'error/404.html', context)

и вот мой шаблон 404.html:

{% extends "error/base/error-base.html" %}
{% load static %}

{% comment %}
    This template extends the base template and includes various sections of the home page.
    It also loads static files for better site accessibility.
{% endcomment %}


{% block content %}
<section>
    <div class="d-flex align-items-center justify-content-center vh-100">
        <div class="text-center row">
            <div class=" col-md-6">
                <img src="https://cdn.pixabay.com/photo/2017/03/09/12/31/error-2129569__340.jpg" alt=""
                    class="img-fluid">
            </div>
            <div class=" col-md-6 mt-5">
                <p class="fs-3"> <span class="text-danger">Opps!</span> Page not found.</p>
                <p class="lead">
                    The page you’re looking for doesn’t exist.
                </p>
                <a href="index.html" class="btn btn-primary">Go Home</a>
            </div>

        </div>
    </div>
</section>
{% endblock %}

также выполнена команда python manage.py collectstatic, но проблема сохраняется

Пожалуйста, проверьте и сообщите мне, в чем проблема, если это возможно.

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