How can I redirect the default home page to another page in CakePHP?

I need to redirect the default CakePHP home page / or (/pages/home) to /users/dashboard page
I tried

Router::connect('/', array('controller' => 'users', 'action' => 'dashboard'));

and

Router::connect('/pages/home', array('controller' => 'users', 'action' => 'dashboard'));

But both are not working