In my mod_perl authentication module I have the following to get the url
without the ticket parameter
my $uri_parsed = $r->parsed_uri;
my $unparsed = $uri_parsed->unparse();
but if the user hits the url as follows
http://localhost/test it actually goes to
http://localhost/test/index.pl because of the Directory index configuration
in my httpd.conf (e.g DirectoryIndex index.pl)
When I print the $unparsed it gives http://localhost/test but How can I get
the entire url.
--
View this message in context:
http://www.nabble.com/Retrieve-Query-String-tf3079246.html#a8555187
Sent from the mod_perl - General mailing list archive at Nabble.com.