You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
278 B
PHTML
9 lines
278 B
PHTML
9 years ago
|
<?php
|
||
|
|
||
|
if (is_file(__DIR__ . $_SERVER["REQUEST_URI"]) && preg_match('/\.(?:png|jpg|jpeg|gif|css|js|eot|svg|ttf|woff|woff2)$/', $_SERVER["REQUEST_URI"])) {
|
||
|
return false; // serve the requested resource as-is.
|
||
|
}
|
||
|
|
||
|
# Magic be there
|
||
|
include __DIR__ . '/../src/bootstrap.php';
|