problem with hiding the url of entry-point
Hello,
I have the following problem:
I am using Spring Security and my entry-point is
<security:form-login login-page="/index.htm" default-target-url="/start.htm" always-use-default-target="true" authentication-failure-url="/index.htm" />
So when I am starting my tomcat and go to localhost:8080 and then he redirect automatically to index.htm
So far so good that the correct behavior. But in my case I do not want to see this localhost:8080/index.htm in the browser, but only localhost:8080
Is there a possiblity with this redirect without displaying the URL in the browser?