Hi,
I need to turn URL's like /catalog/products/24 into cleaner URL's like /catalog/product-name-here. I'm using codeigniter and rewrite engine is on and all setup. I also setup rewriting in the routes.php file like this:
$route['catalog/products/(:any)'] = 'catalog/view/$1';
My question is: where do I replace the product ID "/24" with "/product-name-here"? I can successfully get the param $1 and fetch the product name, but I can't figure out how to rewrite the URL with this dynamic value.
Thank you very much!
francois