Pages

Wednesday, March 5, 2014

Tutorial HTTP or HTTPS

if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off'
    || $_SERVER['SERVER_PORT'] == 443) {

  // HTTPS

} else {

  // HTTP

}

No comments:

Post a Comment