routes_in = (
('/(.*)/(.*)/(.*)', '/$1/$3'),
)
little explanation:
$1 - app
$2 - controller
$3 - action + vars and argsas you see $2 is skipped
routes_in = (
('/(.*)/(.*)/(.*)', '/$1/$3'),
)
little explanation:
$1 - app
$2 - controller
$3 - action + vars and argsas you see $2 is skipped