2015-07-12 15:01:42 -04:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
<IfModule mod_negotiation.c>
|
2019-08-06 15:33:51 -04:00
|
|
|
Options -MultiViews -Indexes
|
2015-07-12 15:01:42 -04:00
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
RewriteEngine On
|
|
|
|
|
2020-02-19 01:44:23 -05:00
|
|
|
# Handle Authorization Header
|
|
|
|
RewriteCond %{HTTP:Authorization} .
|
|
|
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
# Redirect Trailing Slashes If Not A Folder...
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
2020-09-22 19:22:03 -04:00
|
|
|
RewriteCond %{REQUEST_URI} (.+)/$
|
|
|
|
RewriteRule ^ %1 [L,R=301]
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2020-09-22 19:22:03 -04:00
|
|
|
# Send Requests To Front Controller...
|
2015-07-12 15:01:42 -04:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteRule ^ index.php [L]
|
|
|
|
</IfModule>
|