Hello everyone.I have got 3 questions about redirection in Phalcon. 1) Is it correct to set my baseUri to '/' if I'm working on a localhost and it is pointing to the public folder and I am accessing my website thru phalcon.loc in my browser. 2) What is the difference between redirecting
$this->response->redirect('index'); //$this = controller
and
$this->dispatcher->forward (['controller' => 'index']);
3) How to redirect correctly with response->redirect to for example User controller and succssfulLogin action from User controller login action What I have is
$this->response->redirect('/user/successfulLogin');
and what I get is user/successfulLogin in my browser. Basicly, what I am asking is how to redirect to another action or another controller and action via $this->response->redirect(); Thanks