我想像这样重写我的网址:
/admin/
-> /admin/admin.xhtml
我写了这段代码:
return ConfigurationBuilder.begin()
.addRule(TrailingSlash.append())
.when(Path.matches("/{page}"))
.perform(Forward.to("/{page}/{page}.xhtml"))
但有了这个配置,我得到了这个例外:
org.ocpsoft.rewrite.exception.ParameterizationException:
Must supply [2] values to build output string.
如何在“何时”中使用一个变量,在“执行”中使用两次?