[eluser]abmcr[/eluser]
I have an routes.php file as
Code:
$route["{$lang}vivere/(.*)"] = "vivere/index/$2";
for managing url as
Code:
http://host/application/fr/vivere/mypage
i want excluding from this rule an url as
Code:
http://host/application/fr/vivere/pag/anotherpage
and i have set into the router
Code:
$route["{$lang}vivere/(.*)"] = "vivere/index/$2";
$route["{$lang}vivere/pag/(.*)"] = "vivere/pag/$2";
but, obvious, the first rule rewrite the second: it is possible to exluding the second url? Thank you