Detecting https requests in php - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T23:57:02Zhttp://stackoverflow.com/feeds/question/452375http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/452375/detecting-https-requests-in-php1Detecting https requests in phpdeadprogrammer2009-01-16T23:10:37Z2009-01-18T05:40:27Z
<p>The problem that I am having has to do with the need to keep some urls of a website protected by https and the rest kicked to http.</p>
<p>Normally, you have $_SERVER['HTTP_HTTPS'] or $_SERVER['HTTPS'] (depending on your flavor of Apache). You also can check the port - it's 80 for normal traffic and 443 for https. </p>
<p>My problem is that the certificate sits on the loadbalancer, and all these variables are unavailable, and the webserver sees <a href="http://www.foo.com" rel="nofollow">http://www.foo.com</a> on port 80. One way to fix this is to tell the loadbalancer to sent the traffic on a different port, but I wonder if there are other ways to detect https coming from the load balancer...</p>
http://stackoverflow.com/questions/452375/detecting-https-requests-in-php/452395#4523954Answer by hayalci for Detecting https requests in phphayalci2009-01-16T23:23:23Z2009-01-16T23:23:23Z<p>If the load balancer is the other end of the SSL connection, you cannot get any more info than the load balancer explicitly provides. I would go for adding a http header, it may already be doing that, dump all the HTTP headers and look.</p>
<p>As another solution, you can do the redirection on the load balancer based on URL.</p>