Pretty sure, I miss something fundamentally, but how can I set the route of “/” to a specific page?
(Purely frontend / bootstrap project)
I’ve setup the routing to a page, but when accessing the server via “/”, it doesn’t work, file not found. Accessing “/index.html” (which is the template I use), however works.
I believe (I’m not 100% so @teodor might correct me on this) the routing for mobile, because it is client-side only, is delivered by JS so a head page has to be opened directly first to allow the javascript to be called. Then content pages will be delivered by routing. As a result you will always start at ‘.index.html’ in a browser.