web/routing.php
author salimr <riwad.salim@yahoo.fr>
Mon, 05 Nov 2018 19:04:57 +0100
changeset 1484 8b545f4cdaf3
parent 1388 72b2ca5a481e
permissions -rw-r--r--
Archive Work Marathon 2018 event

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