I have defined the following routes file:
GET / controllers.Application.app
# web service entries...
GET /api/users controllers.Users.list
[...]
# Map static resources from the /public folder to the /assets URL path
GET /*file controllers.Assets.at(path="/public", file)
and in my Application.app action I just redirect to index.html
def app = Action {
Redirect(routes.Assets.at("index.html"))
}
so when I access to my application at http://mydomain I'm redirected tohttp://mydoamin/index.html, which then add a /#ideas to the location (it's a single web page app)
I'd like to get rid of the index.html file, and instead being redirected to http://mydoamin/#ideas
is it possible?