页面跳转
void Core_Controller::redirect( string $url [, integer $code = integer 302 ] )
参数列表
参数 类型 描述 默认值 $url
string
Redirect location $code
integer
Status code: 301, 302, etc integer 302
void
public static function redirect($url, $code = 302)
{
HttpIO::redirect($url, $code);
}