2022-03-01から1ヶ月間の記事一覧
簡単そうで簡単でない、それがCakePHP… AppController.phpにやらせる場合 public function appError($error) { if (isset($error) && get_class($error) == 'MissingControllerException') { $this->redirect('/'); } } ルーティングにやらせる場合 Router::…
簡単そうで簡単でない、それがCakePHP… AppController.phpにやらせる場合 public function appError($error) { if (isset($error) && get_class($error) == 'MissingControllerException') { $this->redirect('/'); } } ルーティングにやらせる場合 Router::…