('/(.*?)/(.*?)', '/$1/yourcontroller/$2'),
or use
('/$a/$anything', '/$a/yourcontroller/$anything'),
On Aug 1, 1:16 am, Vasile Ermicioi <[email protected]> wrote:
> oops, not like that but like this
>
> routes_in = (
> ('/(.*)/(.*)', '/$1/yourcontroller/$2'),
> )
>
> everything is passed to a controller (e.g. 'default')

