Bilal Rabi
Bilal Rabi

Reputation: 149

Routing issues in regex codeigniter

Problem is i have two routes

$route['management/(:any)'] = 'mycontroller/home/$1'; $route['management/(:any)/contact'] = 'mycontroller/contact/$1';

First route is working properly but second is not working. can any one please guide me i am using codeigniter framework.

Upvotes: 0

Views: 33

Answers (1)

Malcolm Diggs
Malcolm Diggs

Reputation: 455

Try switching the order in which you write them. The first one is probably catching that route, so it's never making it to the second one.

Upvotes: 1

Related Questions