I'm managing the url with .htaccess and, internally, I'm validating the URL.
For example, when the URL that is accessed is the following:
home.dev/control/principal/index
Rewrite where the file is with the following structure:
home.dev/aplicacion/carpeta/archivo
That's the right way, and when they misspell for example like this:
home.dev/control/principale/indexar
internally it is valid and since it does not exist it redirects it to main. But the URL remains as it was written.
Is there a way for it to be written badly other than to perform the redirect change the URL?