Re: Location, filename, path_info

2006-07-31 Thread Scott Penrose
On 31/07/2006, at 23:15, Michael Peters wrote: Are you saying that /xyz does exist in your document root? I've found that Apache won't work if you mix a virtual directory, real directory and path_info. This is because PATH_INFO is what ever is left over after url => file name mapping. If t

Re: Location, filename, path_info

2006-07-31 Thread Michael Peters
Scott Penrose wrote: > Hey ho > > I have a simple configuration: > > PerlModule Test::FH > > SetHandler perl-script > PerlResponseHandler Test::FH > > > Now I go to the URL http://www.myhost.com/xyz/abc/qqq/123 > > Inside my code I want to get "/ggg/123" so I try > > pr

Location, filename, path_info

2006-07-31 Thread Scott Penrose
Hey ho I have a simple configuration: PerlModule Test::FH SetHandler perl-script PerlResponseHandler Test::FH Now I go to the URL http://www.myhost.com/xyz/abc/qqq/123 Inside my code I want to get "/ggg/123" so I try print "Request: " . $r->path_info . "\n"; This re