how to redirect by page expired

Is it possible to redirect the page expired error page automaticly to the login form of the solution the user was active in last?

I’ve found the templates in the application server, and i can redirect for example the SelectSolution page to the HelloWorld page.
But I haven’t got a clue on how I can redirect it to the correct login form.

this is currently not possible because if something really expires (not all page expires are really session expires)
but if it is a session expire then there is no state anymore on the server, so we don’t know what solution the client had open…

I guess this can be fixed a bit if you would use nice.urls because then there is a bit of state in the url (and i think servoy will then redirect to the load page of that solution)
the other fix for this would be if we also place a persistent cookie on the client and servoy would read that in to know where the client last was
(but this only works for 1 whole browser having 1 solution open)

We do this, by making our own expire page, in the servoy ROOT (you can set this in the servoy-admin page)

Than this page has a message: the session is expired, with a big button under it that says: Login again…
that buttons contains, a link, to the webclient-login page.

the only disadvantage is that this setting works application_server wide, you can’t set the expire page per solution. So if you have multiple webclient solutions, on 1 server, both with their own, login, this won’t work.