Wondering what's the preferred way to re-route URLs to specific
controllers. I'm porting my site to haxeigniter and basically want to
get rid of some content, but still handle requests. Let's say I want
to use the same controller for different URLs. Example:
site.com/projects/wadus
site.com/proyectos/wadus
site.com/proyectos/wadus/index.html
They all should go now through the same controller and method.
Shall I just create my own router implementing Router or is there
anything coded out of the box to do this kind of thing? Something such
as (pseudo-code):
'/proyectos/*' = controller > projects, method > wadus;
'/projects/*' = controller > projects, method > wadus;
Cheers,
Juan
--
Juan Delgado - Zárate
http://zarate.tv
http://blog.zarate.tv
--
To unsubscribe, reply using "remove me" as the subject.
Cheers!
Juan