Yii2でリファラーにリダイレクトする方法
リファラーにリダイレクトする基本的な方法:use yii\web\Controller; use yii\helpers\Url; class SiteController extends Controller { public function actionIndex() { return $this->redirect(Yii::$app->request->referrer); } }>>More
リファラーにリダイレクトする基本的な方法:use yii\web\Controller; use yii\helpers\Url; class SiteController extends Controller { public function actionIndex() { return $this->redirect(Yii::$app->request->referrer); } }>>More