Hello,
I'm try to do a forward to a path rather than a controller. For example, if
I get the url /foo/my/path, I want to redirect it to /my/path which belongs
to a different controller. In the controllfer Foo, I tried something like
this:
sub foo :Path :Args {
my ($self, $c) = @_
$c->forward("/" . join("/", @{$c->req->args}); # $c->forward("/my/path");
}
I cannot fin the righrt command to forward to any path.
Thank you
Julien
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/