Kohana doesn't generate the request headers until the final page is ready to go back to the browser. If you look in application/bootstrap.php, you'll see this near the very bottom:
echo Request::instance()
->execute()
->send_headers()
->response;
So what you'll want to do is get to the Request object and ask it to do the redirect for you. Usually, this should be done in your controller, not your view. In the controller, you can do $this->request->redirect('kohana/path'). If you insist on doing it in the view, you want Request::current()->redirect('kohana/path') to redirect the currently executing request in the hierarchical chain.
Be careful and notice those are NOT using URL::base in the path- Request::redirect handles that, so you just need to specify the controller/action/parameters.