http://qs321.pair.com?node_id=110649


in reply to mod_perl module to redirect http to https prior to login

You could use mod_rewrite to forward someone to an https page if they are using http. Something along the lines of:
RewriteEngine On RewriteCond %{HTTPS} ^$ RewriteRule (.*) https://domain.com/directory/$1 [L]