1

给定

GET /termsofservice   staticFile:/public/tos.txt
GET /public/          staticDir:public

如何在模板中指向第一条路线?

@{'public/tos.txt'} 以 .../public/tos.txt 网址结束,而不是 .../termsofservice

我现在正在使用

${play.Play.configuration.getProperty("application.baseUrl")}/termsofservice 

但应该有更清洁的方法吗?

4

1 回答 1

1

这并不理想,但我们拥有的是一个“Docs”控制器:

public class Docs extends Controller {
    public static void termsOfUse() { render(); }

很可能您无论如何都不希望 TOS 成为 txt 文件,因此您可以为它创建模板,在其中包含页眉/页脚并在其中添加 TOS,获取 /docs/termsofservice URL 或类似内容。

于 2012-04-12T00:42:24.113 回答