I have a CodeIgniter website and the link structure for the inner pages look like below:
http://www.example.com/pages/Campus-Tour/18/3
pages is my controller name and campus-tour, 18 and 3 are the values passed into the index method.
I want to make a pretty url, so can I use something like this in routes.php?
$route['campus-life/campus-tour'] = 'pages/Campus-Tour/18/3';
to show this URL "http://www.example.com/campus-life/campus-tour"