カスタムプラグインの中でリダイレクトする

Craft CMS スニペット:カスタムプラグインの中でリダイレクトする

Craft CMS Logo

サイト内の /foo/bar というページにリダイレクトします。

use craft\helpers\UrlHelper;

$url = UrlHelper::siteUrl('foo/bar');
Craft::$app->getResponse()->redirect($url)->send();
Published 2021-07-12
Updated 2021-07-12