I'm setting up a CakePHP project, and would like all requests passed in to be redirected to one specific controller.
Currently my routing rule is set up like this:
Router::connect('/:action/*', array('controller' => 'files'));
However, this is obviously not the correct way to achieve this, as it is producing several E_NOTICE errors.