カスタムプラグインの中でリダイレクトする
2021-07-12
1分で読了
更新: 2025-12-14
目次
サイト内の /foo/bar というページにリダイレクトします。
use craft\helpers\UrlHelper;
$url = UrlHelper::siteUrl('foo/bar');
Craft::$app->getResponse()->redirect($url)->send();