I want to create dynamic routes on my web application, but i've got a routing issue.
Here's my URL : https://www.mywebsite.fr/Template/index/Albumaker/10212276203435022
I want something that looks like this :
https://www.mywebsite.fr/Albumaker
I've tried this on my routes but it does not work :
$route['Template/index/(:any)/(:num)'] = '$1';
Any idea, thanks ?