1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-20 03:29:35 +05:30
Files
neosubhamoy-portfolio/htdocs/core/host_config.php

10 lines
184 B
PHP

<?php
$currentHost = $_SERVER['HTTP_HOST'];
if($currentHost == "localhost") {
$basePath = "https://localhost/neosubhamoy/htdocs";
}
else {
$basePath = "https://" + $host;
}
?>