Route to static file in Play! 2.0
问题 I'm trying to make a route to a specific static file but everything I'm trying ends with an error. I've made 3 different attempts: 1. GET /file staticFile:/public/html/file.html The error I get: Compilation error string matching regex `\z' expected but `:' found 2. GET /file controllers.Assets.at(path="/public/html", "file.html") The error I get: Compilation error Identifier expected 3. GET /file controllers.Assets.at(path="/public/html", file="file.html") The error I get: (and this is the