Initial commit
This commit is contained in:
commit
f48cdc268b
31 changed files with 628 additions and 0 deletions
9
content/index.php
Normal file
9
content/index.php
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
// Handle /app static file requests
|
||||
if (str_starts_with($_SERVER['REQUEST_URI'], '/app/')) {
|
||||
require __DIR__ . '/../app/static.php';
|
||||
exit;
|
||||
}
|
||||
|
||||
// All other requests go to router
|
||||
require __DIR__ . '/../app/router.php';
|
||||
Loading…
Add table
Add a link
Reference in a new issue