How can I redirect from bootstrap interface?




class AppBootstrap implements \yii\base\BootstrapInterface {

    public function bootstrap($app) {

        $app->on(\yii\base\Application::EVENT_BEFORE_ACTION, function($event) use ($app) {

            if (/*** Some check ***/) {

                /*** Redirect here ***/

            }

        });

    }

}



https://www.yiiframework.com/doc/api/2.0/yii-web-response#redirect()-detail

Did you try it from bootstrap interface?