Sounds like after logging in, your application is routing the user to the empty URL http://your-app/ but you don’t have an empty route (@Route("")) available. You can do one of the following:
Change your login process to redirect the use to some existing Route like http:/your-app/Apply
Add a view with the empty Route annotation
Add a @RouteAlias("") annotation to one of your existing routes