(Yaf >=1.0.0)
Yaf_Controller_Abstract::redirect — Redirect to a URL
Redirects the client to another URL by sending a
Location header (HTTP status 302).
urlThe URL to redirect to.
Example #1 Yaf_Controller_Abstract::redirect() example
<?php
class AccountController extends Yaf_Controller_Abstract
{
public function loginAction() {
if (!$this->getRequest()->getParam("user")) {
// send a Location header with HTTP status 302
$this->redirect("http://www.example.com/account/login/");
return false; // skip auto-rendering
}
}
}
?>