web/routing.php
author Riwad Salim
Fri, 21 Dec 2018 12:21:15 +0100
changeset 1494 a7adb39ecf22
parent 1388 72b2ca5a481e
permissions -rw-r--r--
Archive enmi18

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