I have blank app from distribution
I add the second route to Config/Routes.php
$routes->add('/', 'Home::index'); // from distrib
$routes->add('/test', 'Home::index'); // addition
I get 200 OK for
http://local.dev/
And 404 fof
http://local.dev/test
Why?
I add the second route to Config/Routes.php
$routes->add('/', 'Home::index'); // from distrib
$routes->add('/test', 'Home::index'); // addition
I get 200 OK for
http://local.dev/
And 404 fof
http://local.dev/test
Why?