symfony redirect with 2 parameters
php, redirect, symfony1
Solution
Well, that's normal, "redirect" redirect to an absolute URL. You can do that:
$this->redirect($this->generateUrl('default', array('module' => 'input',
'action' => 'new', 'year' => $year, 'month' => $month)));
Problem
How can I redirect to another action passing 2 or more parameters? This code: ``` $this->redirect('input/new?year=' . $year . '&month=' . $month); ``` Results in URL: `http://.../input?year=2009&month=9`