Frontend\Core\Engine\Base\Block::redirect PHP Method

redirect() public method

Redirect to a given URL
public redirect ( string $url, integer $code = 302 )
$url string The URL whereto will be redirected.
$code integer The redirect code, default is 302 which means this is a temporary redirect.
    public function redirect($url, $code = 302)
    {
        $response = new RedirectResponse($url, $code);
        throw new RedirectException('Redirect', $response);
    }