The Pages Controller

CakePHP’s official skeleton app ships with a default controller PagesController.php.This is a simple and optional controller for serving up static content. The home pageyou see after installation is generated using this controller and the viewfile templates/Pages/home.php. If you make the view filetemplates/Pages/about_us.php you can access it using the URLhttp://example.com/pages/about_us. You are free to modify the PagesController to meet your needs.

When you “bake” an app using Composer the Pages Controller is created in yoursrc/Controller/ folder.