in reply to Downloading a web page over HTTPS?

LWP::Simple is not following the redirect. Try using WWW::Mechanize:
my $www = WWW::Mechanize->new(); $www->get($url); print $www->content();