我需要根据URL上下文路径对我的页面(即自定义图像)进行标记。我已经有了URL Mapping:
"/enrollment/$client/$action/" {
controller = "enrollment"
}
但是,我似乎无法让控制器尊重自定义网址。
我想要的例子是当我在这样的页面上时:localhost:8080 / enrollment / insurance-a / index 我希望能够导航到工作流程中的下一页,希望是这样:localhost:8080 / enrollment / insurance-a / thanks 但是,当我渲染视图时,它将转到:localhost:8080 / enrollment / thanks
连连呢?