itflow/includes/router.php

9 lines
351 B
PHP

<?php
// URI Router
// Currently unused, but the idea is to dynamically prepend ../../ to asset paths (like includes, libraries, etc.)
// based on the current directory depth. This allows us to support deeply nested folder structures.
$depth = min(substr_count(trim($_SERVER['REQUEST_URI'], '/'), '/'), 3);
$path_prefix = str_repeat('../', $depth);