Is routing name is case sensitive? #15539
Unanswered
Sandeep06Dev
asked this question in
Help
Replies: 1 comment 1 reply
-
The standard is that the path in a URL is case-sensitive. If you want to make case-insensitive paths work, I might look into using custom routes and redirect everything to a lower-case path. You could also try using But as a personal-opinion, unless it's critical that you're URL's are case-insensitive, I wouldn't stress about it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, the intelligent guys..
Just want to know in next js the routing is case sensitive or not?
If yes then how i can made in case insensitive.
E.g.
I have a page "pages/myBio.jsx"
In browse when i type localhost:3000/myBio then pages gets open but when i type localhost:3000/MYBIO or localhost:3000/mybio
in browser address bar then its not get open..
Help please.
Beta Was this translation helpful? Give feedback.
All reactions