Skip to content

Instantly share code, notes, and snippets.

@cakephp-tutorial
Created March 17, 2016 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cakephp-tutorial/56321b6211ed99eff656 to your computer and use it in GitHub Desktop.
Save cakephp-tutorial/56321b6211ed99eff656 to your computer and use it in GitHub Desktop.
<?php
Router::connect('/blog/articoli/:id',
array(
'controller' => 'posts',
'action' => 'view'
),
array(
'id' => '[0-9]+',
'pass' => array('id')
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment