I'm following the CakePHP blog tutorial, and at the moment the URL
/posts/view/1
Works. Using routing, I managed to create an alias news:
Router::connect('/news/:action/*', array('controller' => 'posts'));
Router::connect('/news/*', array('controller' => 'posts'));
This way, the URL
/news/view/1
Works as well. However, the /posts/ URL still work as well. How do I prevent URL's with /posts/ still working?