mirror of
https://github.com/Rouji/single_php_filehost.git
synced 2025-04-04 16:39:34 +00:00
Do not assume script is installed in root dir (#20)
This commit is contained in:
parent
1326c8cbc3
commit
6c5d984efa
@ -20,7 +20,7 @@ class CONFIG
|
|||||||
public static function SITE_URL() : string
|
public static function SITE_URL() : string
|
||||||
{
|
{
|
||||||
$proto = ($_SERVER['HTTPS'] ?? 'off') == 'on' ? 'https' : 'http';
|
$proto = ($_SERVER['HTTPS'] ?? 'off') == 'on' ? 'https' : 'http';
|
||||||
return "$proto://{$_SERVER['HTTP_HOST']}/";
|
return "$proto://{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user