Is there any other command for redirecting a controller to a particular view page other than redirect and render?
I have the redirect as
$this->redirect('/forms/homepage/'.$userId);
But if I give
$this->render('/forms/homepage/'.$userId);
it doesn't get redirected to that page.
Is something wrong?