<?php declare(strict_types=1); $target = dirname(__DIR__) . '/back/'; if (is_dir($target)) { header('Location: ../back/', true, 303); exit; } http_response_code(404); exit('System Error: Directory Not Found.');