Skip to content

Instantly share code, notes, and snippets.

@notomato
Created August 17, 2012 02:33
Show Gist options
  • Save notomato/3375411 to your computer and use it in GitHub Desktop.
Save notomato/3375411 to your computer and use it in GitHub Desktop.
Nested/continued routes
<?php
Router::connect('/admin/{:args}', array('admin' => true), array('continue' => true));
Router::connect('/{:locale:en|de|jp}/{:args}', array(), array('continue' => true));
Router::connect('/{:args}.{:type}', array(), array('continue' => true));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment