我已经定义了以下路由文件:
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)
在我的 Application.app 操作中,我只是重定向到 index.html
def app = Action {
Redirect(routes.Assets.at("index.html"))
}
所以当我访问我的应用程序时,http://mydomain
我被重定向到http://mydoamin/index.html
,然后将 /#ideas 添加到该位置(它是一个单一的网页应用程序)
我想摆脱 index.html 文件,而是被重定向到http://mydoamin/#ideas
是否可以?