web/routing.php
author ymh <ymh.work@gmail.com>
Fri, 21 Dec 2018 12:33:01 +0100
changeset 1495 efbda157eb57
parent 1388 72b2ca5a481e
permissions -rw-r--r--
Added tag V06.014 for changeset a7adb39ecf22

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