次のルート ファイルを定義しました。
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 が追加されます (これは単一の Web ページ アプリケーションです)。
index.html ファイルを削除したいのですが、代わりにリダイレクトされますhttp://mydoamin/#ideas
出来ますか?