My current controller is lets say ContactsController (indexAction) . So my URL is https://localhost/myapp/contacts
I want to redirect to Dashboard(indexAction). So I am using the below code:
return $this->response->redirect('dashboard');
The problem is it is redirecting but it is appeding the current controller name like:
redirecting to---> https://localhost/myapp/contacts/dashboard
My Phalcon version 1.3.2.. it is not seen in 2.0 version But my production is 1.3.2 only