Initial commit, framework/frontend assets setup
This commit is contained in:
commit
9d9858bb37
32 changed files with 4651 additions and 0 deletions
5
public/.htaccess
Normal file
5
public/.htaccess
Normal file
|
@ -0,0 +1,5 @@
|
|||
RewriteEngine on
|
||||
RewriteCond %{SCRIPT_FILENAME} !-f
|
||||
RewriteCond %{SCRIPT_FILENAME} !-d
|
||||
RewriteCond %{SCRIPT_FILENAME} !-l
|
||||
RewriteRule ^(.*)$ index.php/$1
|
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 99 KiB |
11
public/index.php
Normal file
11
public/index.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
use Core\Router\Router;
|
||||
|
||||
require '../vendor/autoload.php';
|
||||
|
||||
// Load routes
|
||||
require '../config/routes.php';
|
||||
|
||||
// Dispatch router
|
||||
Router::dispatch();
|
Loading…
Add table
Add a link
Reference in a new issue