<?php | |
Router::connect( | |
'/:controller/:id', | |
array('action' => 'view'), | |
array('id' => '[0-9]+') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
<?php | |
Router::connect( | |
'/:controller/:id', | |
array('action' => 'view'), | |
array('id' => '[0-9]+') | |
); |