Router::connect('/(?i:about)', array('controller' => 'pages', 'action'=>'display', 'about'));
used to work in CakePHP 1.2 but it seems to not be working in CakePHP 2.x
The only other solution that I see is to use the options to set a regular expression that will match against the a flag in the rout, but it seems rather convoluted for something so simple:
Router::connect('/:aboutFlag', array('controller' => 'pages', 'action'=>'display', 'about'),array("aboutFlag"=>"[aA]bout"));
Is there an easier solution more akin to how it was done in cake 1.2?