in reply to Stuck
You could create a script called 'one' in the web server's docroot, and your script would receive the following in its $ENV{PATH_INFO}:http://www.example.com/one/two/three/four.html
You could even go a step further and use this in conjunction with typical CGI arguments:/two/three/four.html
CGI.pm will do all of this for you in a friendly fashion.http://www.example.com/one/two.html?arg1=one&arg2=two $ENV{PATH_INFO} is "/one/two.html" $ENV{QUERY_STRING} is "arg1=one&arg2=two"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re (tilly) 2: Stuck
by tilly (Archbishop) on Dec 16, 2000 at 22:20 UTC | |
|
Re: Re: Stuck
by Anonymous Monk on Dec 16, 2000 at 15:13 UTC |