Hello! I'm trying to setup route which will runs on only specified path. $router->add(':controller/(v1|v2)/:action/', array('controller' =>1, 'action' =>3, 'param' => 2))
I need that action should be executed only for v1 or v2 path, but it executes even for other actions. What I'm doing wrong?