diff --git a/fet2020/fet2020/urls.py b/fet2020/fet2020/urls.py index 5c65133b..457ba3fd 100644 --- a/fet2020/fet2020/urls.py +++ b/fet2020/fet2020/urls.py @@ -67,6 +67,10 @@ urlpatterns = [ {"sitemaps": sitemaps}, name="django.contrib.sitemaps.views.sitemap", ), + path( + "favicon.ico/", + RedirectView.as_view(url=settings.STATIC_URL + "img/favicons/favicon.ico"), + ), path("pages/", include("django.contrib.flatpages.urls")), re_path(r"^(?P.*/)$", flatpages.views.flatpage), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)