Answer the question
In order to leave comments, you need to log in
How to make redirect with delay for yii2?
I can't make redirect with delay in yii2.
\Yii::$app->view->registerMetaTag("10;url={$urlTo}", null, 'refresh');
Answer the question
In order to leave comments, you need to log in
Try like this:
$meta = [
'http-equiv' => 'Refresh',
'content' => '10; url=' . $urlTo,
];
\Yii::$app->view->registerMetaTag($meta);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question