Re: mapping URI to filename.

2008-08-19 Thread Anthony R Fletcher
Perfect. Thank you. Anthony On 19 Aug 2008 at 09:53:03, Geoffrey Young wrote: > > > Anthony R Fletcher wrote: > > Thanks but that only works for the current request. I was looking for a > > way of translating some other URI to a pathname on the same server. > > $r->lookup_uri('

Re: mapping URI to filename.

2008-08-19 Thread Geoffrey Young
Anthony R Fletcher wrote: > Thanks but that only works for the current request. I was looking for a > way of translating some other URI to a pathname on the same server. $r->lookup_uri('/some/uri')->filename() http://perl.apache.org/docs/2.0/api/Apache2/SubRequest.html#C_lookup_uri_ --Geoff

Re: mapping URI to filename.

2008-08-18 Thread Anthony R Fletcher
Thanks but that only works for the current request. I was looking for a way of translating some other URI to a pathname on the same server. Anthony On 18 Aug 2008 at 15:26:53, Geoffrey Young wrote: > > > Anthony R Fletcher wrote: > > Using mod_perl2, is there a way of mapping a

Re: mapping URI to filename.

2008-08-18 Thread Geoffrey Young
Anthony R Fletcher wrote: > Using mod_perl2, is there a way of mapping a URI to a filename or > directory. > > I can get the root directory for the server and I can append the URI to > it but this doesn't taking to account aliases, UserDir directives etc.. > > Any suggestions? $r->filename()

mapping URI to filename.

2008-08-16 Thread Anthony R Fletcher
Using mod_perl2, is there a way of mapping a URI to a filename or directory. I can get the root directory for the server and I can append the URI to it but this doesn't taking to account aliases, UserDir directives etc.. Any suggestions? Anthony.