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