Contao\System::redirect PHP Méthode

redirect() public static méthode

Redirect to another page
Deprecation: Deprecated since Contao 4.0, to be removed in Contao 5.0. Use Controller::redirect() instead.
public static redirect ( string $strLocation, integer $intStatus = 303 )
$strLocation string The target URL
$intStatus integer The HTTP status code (defaults to 303)
    public static function redirect($strLocation, $intStatus = 303)
    {
        @trigger_error('Using System::redirect() has been deprecated and will no longer work in Contao 5.0. Use Controller::redirect() instead.', E_USER_DEPRECATED);
        \Controller::redirect($strLocation, $intStatus);
    }