swoole_http_response->redirect

发送Http跳转。调用此方法会自动end发送并结束响应。

function swoole_http_response->redirect(string $url, int $http_code = 302);

需要2.2.0或更高版本

参数

实例

$http = new swoole_http_server("0.0.0.0", 9501, SWOOLE_BASE);

$http->on('request', function ($req, Swoole\Http\Response $resp) {
    $resp->redirect("http://www.baidu.com/", 301);
});

$http->start();