diff options
| author | Camil Staps | 2016-01-04 15:12:59 +0100 | 
|---|---|---|
| committer | Camil Staps | 2016-01-04 15:12:59 +0100 | 
| commit | 9c4afbed2310aa0c4679d11b9f568c234d202554 (patch) | |
| tree | 65e8956b671239f2ec38789ce59a4cea9af0ebc2 /public | |
Initial commit
Diffstat (limited to 'public')
| -rw-r--r-- | public/.htaccess | 15 | ||||
| -rw-r--r-- | public/index.php | 28 | 
2 files changed, 43 insertions, 0 deletions
| diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..77827ae --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,15 @@ +<IfModule mod_rewrite.c> +    <IfModule mod_negotiation.c> +        Options -MultiViews +    </IfModule> + +    RewriteEngine On + +    # Redirect Trailing Slashes... +    RewriteRule ^(.*)/$ /$1 [L,R=301] + +    # Handle Front Controller... +    RewriteCond %{REQUEST_FILENAME} !-d +    RewriteCond %{REQUEST_FILENAME} !-f +    RewriteRule ^ index.php [L] +</IfModule> diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..04aa086 --- /dev/null +++ b/public/index.php @@ -0,0 +1,28 @@ +<?php + +/* +|-------------------------------------------------------------------------- +| Create The Application +|-------------------------------------------------------------------------- +| +| First we need to get an application instance. This creates an instance +| of the application / container and bootstraps the application so it +| is ready to receive HTTP / Console requests from the environment. +| +*/ + +$app = require __DIR__.'/../bootstrap/app.php'; + +/* +|-------------------------------------------------------------------------- +| Run The Application +|-------------------------------------------------------------------------- +| +| Once we have the application, we can handle the incoming request +| through the kernel, and send the associated response back to +| the client's browser allowing them to enjoy the creative +| and wonderful application we have prepared for them. +| +*/ + +$app->run(); | 
