web/routing.php
author ymh <ymh.work@gmail.com>
Tue, 22 Oct 2024 10:01:37 +0200
changeset 1570 c175d505e40d
parent 1388 72b2ca5a481e
permissions -rw-r--r--
Added tag V08.006 for changeset 455bdfbdd320

<?php
// www/routing.php
if (preg_match('/\.(?:png|jpg|jpeg|gif)$/', $_SERVER["REQUEST_URI"])) {
    return false;
} else {
    include __DIR__ . '/index.php';
}