浏览代码

Try a little harder to guess th URL.

pallo 25 年之前
父节点
当前提交
d32cce5ff1
共有 1 个文件被更改,包括 21 次插入3 次删除
  1. 21 3
      index.php

+ 21 - 3
index.php

@@ -1,8 +1,26 @@
 <?php
-   $headers = getallheaders();
+
+   // Get the path
    $path = substr($PHP_SELF, 0, strrpos($PHP_SELF, '/'));
-   $location = $headers["Host"] . $path;
 
-   header("Location: http://$location/src/login.php\n\n");
+   // Check if this is a HTTPS or regular HTTP request
+   $proto = "http://";
+   if(isset($HTTPS) && $HTTPS == 'on' ) {
+     $proto = "https://";
+   }
+
+   // Get the hostname from the Host header or server config.
+   // Fallback is to omit the server name and use a relative URI,
+   // although this is not RFC 2616 compliant.
+   if(isset($HTTP_HOST) && !empty($HTTP_HOST)) {
+     $location = $proto . $HTTP_HOST . $path;
+   } else if(isset($SERVER_NAME) && !empty($SERVER_NAME)) {
+     $location = $proto . $SERVER_NAME . $path;
+   } else {
+     $location = $path;
+   }
+
+   // Redirect
+   header("Location: $location/src/login.php\n\n");
    exit();
 ?>