mirror of
https://github.com/neosubhamoy/neosubhamoy-portfolio.git
synced 2025-12-20 02:19:34 +05:30
10 lines
191 B
PHP
10 lines
191 B
PHP
<?php
|
|
$currentHost = $_SERVER['HTTP_HOST'];
|
|
|
|
if($currentHost == "localhost") {
|
|
$basePath = "https://localhost/neosubhamoy/htdocs";
|
|
}
|
|
else {
|
|
$basePath = "https://" . $currentHost;
|
|
}
|
|
?>
|