redirect function in socialengine
we can use this code controller for redirecting
<?php
/**
* Index Controller
*/
class Admin_IndexController extends Core_Controller_Action
{
public function loginAction()
{
$this->_redirect(‘/index’);
}
redirect is core helper function in socialengine. It can use in socialengine controller.