FuelPHP Bin
<?php return array( '_root_' => 'pgs/index/home', // Default to pages module '_404_' => 'front/404', // 404 page 'admin(/:any)?' => 'admin$1', // The admin section 'mod(/:any)' => '$1', // Route to modules (/mod/ must go.) '(:any)' => 'pgs/index/$1' // Normal pages, index function handles the page );