Hi, my form has this action:
<form method="post" action="/index/save">
My indexController looks like this:
public function saveAction() {
...
$this->response->redirect("/statistic");
$this->view->disable();
return;
....
It's all working but the status code of /index/save is "302 Not found". How can I change that?
Thanks!