Is it possible to avoid url redirections to url/ in Django/DjangoRestFramework? My point is that some frontend developers use url without trailing slashes and Django redirects such requests to url/ which slows down the API.
Adding
APPEND_SLASH = False
to settings doesn't solve the problem as it returns 404 responses.
