Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- return array(
- '_root_' => 'welcome/index', // The default route
- '_404_' => 'welcome/404', // The main 404 route
- 'movies' => 'movies/index', // Get All Movies
- 'movie/(:num)?' => 'movies/show/$1', // Get certain Movie by ID
- 'actors' => 'actors/index', // Get All actors
- 'actor/(:num)?' => 'actors/show/$1', // Get certain Actor by ID
- 'actor/(:segment)?' => 'actors/show/$1', // Get actor by slugified Name
- 'categories' => 'categories/idnex', // Get all categories
- 'category/(:alpha)?' => 'categories/show/$1' // Get certain category by its name
- );
Advertisement
Add Comment
Please, Sign In to add comment