Problem:
How to change default controller in CakePHP 3.0. You know that default page of CakePHP 3.0 is Pages and it's action is display.Solution:
To change default controller in CakePHP 3.0 open config.php which is located under "config" folder.and change :
$routes->connect('/', ['controller' => 'Pages', 'action' => 'display', 'home']);
TO
$routes->connect('/', ['controller' => 'Welcome', 'action' => 'index', 'home']);
Where Welcome is your created controller.
0 comments:
Post a Comment