我有不同的文件夹一些。 我想用这样的: http://myserver.com/foo/bar/test.html
我用这种方式获得的路径:
"/excursion/$path**" (controller:"excursion", action:"sweet")
不过,这并不与文件扩展名可以帮助...如何禁用文件扩展名截断?
PS
class ExcursionController {
def defaultAction = "sweet"
def sweet = {
render "${params.path}"
}
}
请求http://myserver.com/excursion/foo/bar/test.html
其结果是“富/酒吧/测试”,无扩展:(