|
@@ -70,22 +70,34 @@ class URL {
|
|
|
}
|
|
|
elseif (isset($_SERVER['HTTP_HOST']))
|
|
|
{
|
|
|
- $protocol = (Request::secure()) ? 'https://' : 'http://';
|
|
|
+ $base = static::guess();
|
|
|
+ }
|
|
|
+
|
|
|
+ return static::$base = $base;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Guess the application URL based on the $_SERVER variables.
|
|
|
+ *
|
|
|
+ * @return string
|
|
|
+ */
|
|
|
+ protected static function guess()
|
|
|
+ {
|
|
|
+ $protocol = (Request::secure()) ? 'https://' : 'http://';
|
|
|
|
|
|
- // Basically, by removing the basename, we are removing everything after the
|
|
|
- // and including the front controller from the request URI. Leaving us with
|
|
|
- // the path in which the framework is installed.
|
|
|
- $script = $_SERVER['SCRIPT_NAME'];
|
|
|
+ // Basically, by removing the basename, we are removing everything after
|
|
|
+ // the and including the front controller from the URI. Leaving us with
|
|
|
+ // the installation path for the application.
|
|
|
+ $script = $_SERVER['SCRIPT_NAME'];
|
|
|
|
|
|
- $path = str_replace(basename($script), '', $script);
|
|
|
+ $path = str_replace(basename($script), '', $script);
|
|
|
|
|
|
- // Now that we have the base URL, all we need to do is attach the protocol
|
|
|
- // and the HTTP_HOST to build the full URL for the application. We also
|
|
|
- // trim off trailing slashes to clean the URL.
|
|
|
- $base = rtrim($protocol.$_SERVER['HTTP_HOST'].$path, '/');
|
|
|
- }
|
|
|
+ // Now that we have the URL, all we need to do is attach the protocol
|
|
|
+ // protocol and HTTP_HOST to build the URL for the application, and
|
|
|
+ // we also trim off trailing slashes for cleanliness.
|
|
|
+ $uri = $protocol.$_SERVER['HTTP_HOST'].$path;
|
|
|
|
|
|
- return static::$base = $base;
|
|
|
+ return rtrim($uri, '/');
|
|
|
}
|
|
|
|
|
|
/**
|