I'am using kohana 2.3 and i have a trouble with config/routes.php.
I am redirecting www.abc.com/var1/var2 to /profile/show/var1/var2 with this line:
$config['(.*)/(.*)/'] = '/profile/show/$1/$2/)';
It's okey but also i want to redirect www.abc.com/var1/var2/feedbacks to /profile/feedbacks/var1/var2 but i can't done that. I am using this rule:
$config['(.*)/(.*)/feedbacks'] = '/profile/feedbacks/$1/$2/)';
But i doesn't work. Always work first rule.