How do I get the mendix Cloud url for my app to use my custom login.html

0
https://myapp.mendixcloud.com points to the default login.html, but I want it to point to my custom login.html: https//myapp.mendixcloud.com/login.html. How do I achieve that?
asked
1 answers
3

You mean that the default page is index.html and you want it to be login.html. A possible solution is a meta-refresh tag in the index.html page

<META http-equiv="refresh" content="0;URL=http://myapp.mendixcloud.com/login.html">
answered