/index.html redirecting to login.html Issue

0
How do we get users redirected to /index.html instead of /login.html?
asked
4 answers
0

Hi Hamzata,

In addition to enabling Anonymous, you should also:

  1. create a page with accessing of the Anonymous role
  2. set this page as default home page (or you can apply specific URL to the page)

 

Hope it helps,

Istvan

answered
0

It depends on what is causing the redirect, but you could take a look at changing the index.html file in theme/web contents from:

originURI=/login.html

to

originURI=/index.html

note: that the login.html no longer will be shown when an user needs to sign in

answered
0

You would need to enable anonymous users in your application. Without anonymous users, anyone using your application has to login, hence you see the login page for all users.

https://docs.mendix.com/refguide/anonymous-users/

I hope this helps. Good luck with your project!
 

answered
0

After giving appropriate access roles to the anonymous users, my issue seems to have been resolved.

answered