Re: URL verification

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Bruno Santos wrote:
Hello all.

I have a login page where users have to authenticate themselves to access some site areas.
Apache is configured to use https.


the user when is typing the URL in the browser, i know that it will not put the https protocol.

how can i check in the page if the user is accessing the the site via SSL ??


$_SERVER['HTTPS']

if ( !isset($_SERVER['HTTPS']) || strtolower($_SERVER['HTTPS']) != 'on' ) {
header ('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
exit();
}


or i have to put a redirect in the page anyway, whether the user is alredy accessing the page via SSL?

No, this would create infinite redirects.


cheers

Bruno Santos


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux