This is how I do it:
if ($_SERVER['HTTPS']!='on') {
header("Location: https://mynet.com/pay.php");
exit;
}
"It is my ambition to say in ten sentences; what others say in a whole
book." - Friedrich Nietzsche
> From: [EMAIL PROTECTED]
> Date: Fri, 1 Aug 2003 10:20:58 +0200
> To: [EMAIL PROTECTED]
> Subject: [PHP] Redirect to HTTPS
>
> I have a stupid question.
>
> I need if i be in a http make a redirect to https.
> Http is a 80 port and ssl is a 443 port
>
> if ($HTTP_SERVER_VARS['SERVER_PORT']==80)
> {
>
> header("Location: https://mynet.com/pay.php");
> exit;
> }
>
> Is the correct way to do this ??? Exist any function to make this ???
>
>
>
> Excuse my broken English, Regards from Spain
>
> Un saludo, Danny
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php