Skip to content

Instantly share code, notes, and snippets.

@cakephp-tutorial
Created March 17, 2016 10:30
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/bbf55252a485b5937dc1 to your computer and use it in GitHub Desktop.
Save cakephp-tutorial/bbf55252a485b5937dc1 to your computer and use it in GitHub Desktop.
<?php
Router::redirect('/articoli/:id',
array(
'controller' => 'posts',
'action' => 'view'
),
array(
'status' => 302,
'persist' => array('id'),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment