In case you ever run into a problem where you are wondering if urls are case sensitive or not here is a couple things you’ll want to keep in mind. First the host and scheme are NOT case sensitive. This means the following list are all valid.
|
After the host all non-encoded
characters are considered to be case
sensitive. This means that if you decide to treat all of the following as the
same route you may want to redirect the requests preferably to the lower case
version.
|
If you have encoded characters, those are not case sensitive. To explain, if you see a url that looks like this:
|
It will be encoded into the following by the browser:
|
These “percent encoded” characters are not case sensitive, so these are to be considered equal.
|