Yaf_Response_Abstract::setRedirect
(Since Yaf 1.0.0.0)
public boolean Yaf_Response_Abstract::setRedirect( string $url );
重定向请求到新的路径
$url
要重定向到的URL
成功返回Yaf_Response_Abstract, 失败返回FALSE
例 11.81. Yaf_Response_Abstract::setRedirect 的例子
<?php class IndexController extends Yaf_Controller_Abstract { public funciton init() { $this->getResponse()->setRedirect("http://domain.com/"); } } ?>