I have defined route for particular URL, but with route params is not working, with same URL without route params is working, here is my URL for that
https://XXXX.com/username/post/details/10425/50
And its for i have defined below route
$route['(:any)/post/(:any)/(:any)/(:any)'] ='post/details/$1/$2';
10425
and 50
is my 2 params, which is not working for me, can anyone please help me to resolve this issue?