I'm unable to route the following URL to a specified URI segment in CodeIgniter.
I want to route this URL
http://192.168.10.225/bachan/view/wholesale_detail/test-property/155454
to:
http://192.168.10.225/bachan/wholesale_detail/test-property/155454
in CodeIgniter 3x.
I have implemented below code but it doesn't work as expected:
$route['wholesale_detail/(:any)']="wholesale_details/$1";
in routes.php file.