in reply to How do I create friendlier URLS?

I think you can always just make your CGI the index.cgi in a directory, and then access the rest of the path supplied in the URL using CGI.pm:
In index.cgi: ... my $q = new CGI; my $path = $q->url(-relative => 1, -path=>1); # $path = "index.cgi/loadPage/10"

-- zigdon