如何在 kohana 中刷新/重新加载页面? [post/prg]

How to refresh / reload page in kohana? [post/prg]

我需要在成功提交表单后刷新注册页面,以防止页面重新加载时多次提交(清理 $_POST/$_REQUEST)。

目前我正在使用:

$this->redirect('news/create', 303);

我不想每次都指定路径,我可以使用哪个快捷方式?

更新:

我做了类似

的东西
$this->redirect("../" . $this->request->uri(), 303);

感谢@biakaveron。但是还是很乱,恕我直言。

附加信息:

好像$this->redirect($this->request->uri(), 303);是最短的路。