Hello - I am in the process of creating a secure login that will server multiple applications. Access to this secure login passes through a reverse proxy. The address to get to the login app is like this http://domain.com/ilogin/. When this url is entered the user is redirect to a splash screen that displays a statement and a I agree checkbox. the page is called home.aspx. When the box is checked the user is redirect to the login.aspx screen. If the user is successfully authenticated, they are redirected to a menu containing a list of applications for which they are authorized access.
The issue I am experiencing is that instead of http://domain.com/ilogin/ being redirected to http://domain.com/ilogin/home.aspx it is instead redirected to http://domain.com/home.aspx
Initially I had this working, however at some point it quit working. I have no knowledge of the reverse proxy, that is the responsibility of another individual.
<authentication mode="Forms">
<forms defaultUrl="/ilogin/default.aspx" enableCrossAppRedirects="true" slidingExpiration="true" timeout="600" path="/" name=".SecureLogin" loginUrl="iLogin/Login.aspx" cookieless="UseCookies"/>