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

10 lines
191 B
PHP

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