From c83e876693bdb71c66418c13f5e09dfdaef24478 Mon Sep 17 00:00:00 2001 From: Fbenas Date: Thu, 18 Jun 2020 16:00:16 +0100 Subject: Init laravel --- public/.htaccess | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 public/.htaccess (limited to 'public/.htaccess') diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..3aec5e2 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,21 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + -- cgit v1.2.3