Route to static file in Play! 2.0

后端 未结 9 1759
甜味超标
甜味超标 2021-01-30 14:05

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 /fil         


        
9条回答
  •  长发绾君心
    2021-01-30 14:36

    IIRC, change

    
    

    To

    
    

    I am talking about your third attempt

    Also, watch out for extra /

    EDIT

    GET /assets/main.css    controllers.Assets.at(path="/public", file="/stylesheets/main.css")
    

    Assuming your resource is at /public/stylesheets/main.css

提交回复
热议问题