I have some questions concering routing with Codeigniter. What I´m doing now is the following:
$route[\'articles/(:num)\'] = \'articles/view/$1\'; // $1 will
As we discussed on the comments.
You can create a route several times and with different parameters each, like:
$route['articles/(:num)/(:any)'] $route['articles/(:num)']
I would create a function with a redirect, adding or not the title to it.
Hope it helps.