This commit is contained in:
2024-01-12 15:37:02 +01:00
parent ab46b0c0c0
commit d7460c138f
2 changed files with 13 additions and 2 deletions

View File

@@ -5,6 +5,8 @@ session_start();
$default_page = "domov";
$default_site = "home";
$template_dir = "templates/";
$static_page_dir = "pages/";
@@ -21,8 +23,13 @@ $srvname = $_SERVER["SERVER_NAME"];
$protocol = $_SERVER['PROTOCOL'] = isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && !empty($_SERVER['HTTP_X_FORWARDED_PROTO']) ? "https://" : "http://";
if (empty($tld)){
header("Location: $protocol$default_site.$subdomain.$domain/$default_page");
return;
}
if (empty($page_name)){
header("Location: $protocol$domain.$tld/$default_page");
header("Location: $protocol$subdomain.$domain.$tld/$default_page");
return;
}