Route in Codeigniter to hide Class Method

64 Views Asked by At

Currently I have something like this $route['ourworks/client'] = "ourworks/ourwork_item/client"; $route['ourworks/portfolio'] = "ourworks/ourwork_item/portfolio"; $route['ourworks/casestudy'] = "ourworks/ourwork_item/casestudy";

Is there anyway that I could make these 3 lines a a dynamic line?

Thank you

2

There are 2 best solutions below

0
On

Should work:

$route['ourworks/([a-z]+)'] = "ourworks/ourwork_item/$1";
0
On

To allow the other permitted chars use this:

$route['ourworks/(:any)'] = "ourworks/ourwork_item/$1";