1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 22:53:03 +05:30

(fixed): hostconfig for non localhost hosts

This commit is contained in:
2023-11-10 13:09:49 +05:30
parent 9fa9f4980b
commit f55fb3c084

View File

@@ -5,6 +5,6 @@ if($currentHost == "localhost") {
$basePath = "https://localhost/neosubhamoy/htdocs";
}
else {
$basePath = "https://" + $host;
$basePath = "https://" . $currentHost;
}
?>