mapping URI to filename.
am 16.08.2008 18:31:18 von 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.
Re: mapping URI to filename.
am 18.08.2008 21:26:53 von 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()
http://perl.apache.org/docs/2.0/api/Apache2/RequestRec.html# C_filename_
--Geoff
Re: mapping URI to filename.
am 19.08.2008 02:31:41 von 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 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()
>
> http://perl.apache.org/docs/2.0/api/Apache2/RequestRec.html# C_filename_
>
> --Geoff
--
Anthony R Fletcher
Room 2033, Building 12A, http://dcb.cit.nih.gov/~arif
National Institutes of Health, arif@mail.nih.gov
12A South Drive, Bethesda, Phone: (+1) 301 402 1741.
MD 20892-5624, USA.
Re: mapping URI to filename.
am 19.08.2008 15:53:03 von 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.
am 19.08.2008 17:19:44 von 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('/some/uri')->filename()
>
> http://perl.apache.org/docs/2.0/api/Apache2/SubRequest.html# C_lookup_uri_
>
> --Geoff
--
Anthony R Fletcher
Room 2033, Building 12A, http://dcb.cit.nih.gov/~arif
National Institutes of Health, arif@mail.nih.gov
12A South Drive, Bethesda, Phone: (+1) 301 402 1741.
MD 20892-5624, USA.