1

你如何匹配 abc/?在游戏 2 中?播放 1 的文档显示这将起作用,但我找不到播放 2 的资源。

4

2 回答 2

0

In routes file, just use this:

GET   /abc          controllers.Clients.show() 
于 2012-11-16T15:38:27.297 回答
0

这是一个修复:

conf/routes资源之前和更具体的休息调用之后添加此行。

# Detrail url
GET     /*path/                     controllers.BlogController.redirectUntrailed(path: String)

然后在控制器中,添加这个动作。

def redirectUntrailed(path: String) = Action {
  MovedPermanently("/" + path)
}
于 2013-04-30T12:37:12.143 回答