Django Rest Framework deploy show favicon 500 Internal Server Error
问题 I am trying to deploy my Django rest framework to aws eb but when I test the API, it shows favicon.ico:1 GET http://myapp.....com/favicon.ico 500 (Internal Server Error) I update my url.py of django project to from django.views.generic.base import RedirectView urlpatterns = [ url('favicon.ico', RedirectView.as_view( url='/static/favicon/favicon.ico'))...] But It still shows an internal error. I already search and found similar questions but not a useful answer. like that=> How do I edit the