I read many posts on how to create a static page like About or Contact using CakePHP but still my page does not appear. Is there anything I missed? Please help since I started CakePHP today and I may have done some small mistake. Thanks. This is what I did.
Create about.ctp inside View/Pages/
Create route for the page
Router::connect('/about', array('controller' => 'pages', 'action' => 'display', 'about'));Link to page in my default.ctp layout
<a href="<?php echo Router::url('/about'); ?>">About</a>
www.web.com/aboutyou don't see your page? or if you press the link (in 3) ) it takes you somewhere else? - Nunser/View/Pageswith a capitalP. - ndmdebugshould be1or2), try again and check the logs (app/tmp/error|debug.log) if you don't receive any error. Also check whether you can see the home page (/pages/home)? - ndm