we have created our own login page. It's address is "/login/" ie not "/login.aspx"
I cannot find a redirect setting in the web.config. Ideally i'd like to do something like
<authentication mode="Forms">
<forms name="Able"
loginUrl="~/login/default.aspx"
timeout="15"
protection="All"
cookieless="UseCookies"
path="/"/>
</authentication>
need to change Redirect login
Re: need to change Redirect login
You can do this job as below
Also after this change you need to change the login page URL of the login icon in the header and change the following entry in the App_Data/ablecommerce.config file
to
Code: Select all
<authentication mode="Forms">
<forms timeout="90" slidingExpiration="true" name="AC7.ASPXAUTH" loginUrl="~/login/Default.aspx" />
</authentication>
Code: Select all
<add path="Login.aspx" />
Code: Select all
<add path="login/Default.aspx" />
Re: need to change Redirect login
thanks, all working