[eluser]jacobson[/eluser]
mhm

okey.. I've tried routes
$route['val/(:any)'] = 'val';
which means when you pass any variable like val/asnnuobn-cnaoca remap this to the val controller
technically it should work but when I try localhost/index.php/val/ncaojsnc-acnjc, it doesn't change, it also shows me the ncaojsnc-acnjc and after that the 404 error...
Ok, I managed to do it
I make a route
$route['val/(:any)'] = 'val/index/$1';
and in the controller i have function index($val) and it works correctly. Thanks for help