Skip to content

Instantly share code, notes, and snippets.

@jeremeamia
Created March 3, 2010 23:42
Show Gist options
  • Save jeremeamia/321200 to your computer and use it in GitHub Desktop.
Save jeremeamia/321200 to your computer and use it in GitHub Desktop.
Route with subdirectory - Ko3
<?php
// Thanks for the help Zeelot
// Admin Route
Route::set('admin', 'admin(/<controller>(/<action>(/<id>)))')
->defaults(array(
'directory' => 'admin',
'controller' => 'account',
'action' => 'login',
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment