I am hosting a site on Netlify and need to enforce strict case sensitivity for all URL paths. Specifically, I want URLs like https://xyz.netlify.app/Project to be treated as distinct from https://xyz.netlify.app/project, without any automatic redirection from /Project to /project.
Currently, when I enter https://xyz.netlify.app/Project, it redirects to https://xyz.netlify.app/project, which I would like to prevent. Is there a way to configure Netlify to respect case sensitivity in this manner?