return array(
'blog/:year/:month/:id' => 'blog/entry', // Routes /blog/2010/11/entry_name to /blog/entry
);
combined withreturn array(
'blog/(:any)' => 'blog/entry/$1', // Routes /blog/entry_name to /blog/entry/entry_name
'(:segment)/about' => 'site/about/$1', // Routes /en/about to /site/about/en
'(\d{2})/about' => 'site/about/$1', // Routes /12/about to /site/about/12
);
It looks like you're new here. If you want to get involved, click one of these buttons!