To better explain this I’ll give an example:
I have a dynamic page with a URL structure like so “/posts/{post-id}”, where the post id is a random string of letters and numbers. Imagine there are 2 posts A and B with the ids “abc” and “Abc” respectively, when I try to access the URL with “/posts/abc” it shows the page with content of post A, all correct. Now if I access the URL with “/posts/Abc” it automatically changes it to “/posts/abc” and therefore shows the content of post A, instead of post B. It’s basically changing it to lowercase, or in other words it’s case insensitive. I think this hasn’t been like this before, either way, I would love if you please fix this.
Thanks.