07-24-2011, 04:57 AM
[eluser]cyrigniter[/eluser]
Hello,
I have set two rules :
And :
But while the first one is working all fine, the second one behaves juste like the 2nd argument (the :num) wasn't passed at all (displaying see/4 gives the hall/see/ page, not hall/see/4 !). This is very odd because from my point of view, those 2 routes work the same way !!
Even stranger, if I change to then it works !
Any idea ? Thanks
Hello,
I have set two rules :
Code:
$route['followers/(:num)'] = 'hall/filter/subscribers/$1';
Code:
$route['see/(:num)'] = 'hall/see/$1';
Even stranger, if I change
Code:
$route['see/(:num)']
Code:
$route['foo/see/(:num)']
Any idea ? Thanks