summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/LARAVEL/iBook/public/.htaccess
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2022-01-24 19:34:26 +0100
committerSanto Cariotti <santo@dcariotti.me>2022-01-24 19:34:26 +0100
commit710f54c0156c5fa081bc6af1a68e7cb44723939b (patch)
tree056a85c362b7b9c5439506a76e0802e57342cc10 /Year_3/TSDWL/LARAVEL/iBook/public/.htaccess
parentb69d50c415ef1571bd42bb3eb1a1b3b38eab43dd (diff)
add example in laravel
Diffstat (limited to 'Year_3/TSDWL/LARAVEL/iBook/public/.htaccess')
-rw-r--r--Year_3/TSDWL/LARAVEL/iBook/public/.htaccess21
1 files changed, 21 insertions, 0 deletions
diff --git a/Year_3/TSDWL/LARAVEL/iBook/public/.htaccess b/Year_3/TSDWL/LARAVEL/iBook/public/.htaccess
new file mode 100644
index 0000000..3aec5e2
--- /dev/null
+++ b/Year_3/TSDWL/LARAVEL/iBook/public/.htaccess
@@ -0,0 +1,21 @@
+<IfModule mod_rewrite.c>
+ <IfModule mod_negotiation.c>
+ Options -MultiViews -Indexes
+ </IfModule>
+
+ 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]
+</IfModule>