how can i redirect to another action passing 2 or more parameters? this code:
$this->redirect(\'input/new?year=\' . $year . \'&month=\' . $month);
I think this is no normal symfony behavior. Have you defined some routing rules?
Have you also tried this:
$this->redirect('module/action?'.http_build_query($paramsArray));