suburbanantihero has asked for the wisdom of the Perl Monks concerning the following question:
My major problem is that $uri->scheme is returning nothing. Has anyone seen this problem or have a better solution?sub handler { my $r = shift; my $uri = $r->parsed_uri; my $scheme = lc($uri->scheme); if ($scheme eq 'https') { ... } ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Apache::URI conundrum
by Chmrr (Vicar) on Sep 20, 2002 at 19:15 UTC |