Detecting https requests in php - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T23:57:02Z http://stackoverflow.com/feeds/question/452375 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/452375/detecting-https-requests-in-php 1 Detecting https requests in php deadprogrammer 2009-01-16T23:10:37Z 2009-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#452395 4 Answer by hayalci for Detecting https requests in php hayalci 2009-01-16T23:23:23Z 2009-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>