The best thing you can do is force the page to be viewed only by https which is not hard to do and can be done several ways. (BTW, unless you link to the non https version of that page users should never be able to get there in the first place unless they're doing something naughty).
To do it with Apache put this code in a file called .htaccess in the same directory as the file you want to force the http:
Redirect permanent http://www.domain.com/page.php https://www.domain.com/page.php
If you're using PHP you can put this at the top of the page to accomplish the same thing:
<?php
$https_url = 'https://www.domain.com';
if ( isset( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] == 'off' )
{
header('location: ' . $https_url);
exit;
}
else if ( !isset( $_SERVER['HTTPS']) && $_SERVER['SERVER_PORT'] == 443 )
{
header('location: ' . $https_url);
exit;
}
?>
Reputation Points: 161
Solved Threads: 38
He's No Good To Me Dead
Offline 1,422 posts
since May 2006