I have a Java application using Spring MVC.
Let's suppose that my application has the domain www.mysite.com
As the user browses, other urls are generated, for example:
- www.meusistema.com.br/acessarConta
- www.meusistema.com.br/questros/recuperarSenha
- www.mywebsite.com/showcase?type=1
I would like to know if there is any way to hide what appears after the slash (/), so my user always navigates only by seeing www.mysite.com
Is there any way to hide this rest of the url? The application uses Spring MVC but the solution to this does not necessarily need to use this framework ... My screens are in JSP, so I can use javascript, ajax, jquery etc.