CodeIgniter Forums
URI ROUTING - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: URI ROUTING (/showthread.php?tid=46770)



URI ROUTING - El Forum - 11-14-2011

[eluser]Sudz[/eluser]
hello guys,

I have url like this

www.example.com/category/show/3-fruit.
www.example.com/category/show/4-flowers.

but need to convert like this url using codeigniter routing.
www.example.com/3-fruit.

i have done something like this in config/routes.php

Code:
$route['(:num +)(-)([a-z]+)'] = "category/show/$1";


its not working what i am doing wrong. please help me.