@@ -19,31 +19,31 @@ Options All -Indexes
1919 # Redirect Trailing Slashes...
2020 RewriteCond %{REQUEST_FILENAME} !-d
2121 RewriteCond %{REQUEST_URI} (.+)/$
22- RewriteRule ^ %1 [L,R=301 ]
22+ RewriteRule ^ %1 [L,R=301 ]
2323
2424 # Rewrite "www.example.com -> example.com"
2525 RewriteCond %{HTTPS} !=on
2626 RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
2727 RewriteRule ^ http://%1%{REQUEST_URI} [R=301 ,L]
2828
2929 # Checks to see if the user is attempting to access a valid file,
30- # such as an image or css document, if this isn't true it sends the
31- # request to the front controller, index.php
30+ # such as an image or css document, if this isn't true it sends the
31+ # request to the front controller, index.php
3232 RewriteCond %{REQUEST_FILENAME} !-f
3333 RewriteCond %{REQUEST_FILENAME} !-d
3434 RewriteRule ^([\s\S]*)$ index.php/$1 [L,NC,QSA]
3535
3636 # Ensure Authorization header is passed along
37- RewriteCond %{HTTP:Authorization} .
38- RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization }]
37+ RewriteCond %{HTTP:Authorization} .
38+ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization }]
3939</IfModule >
4040
4141<IfModule !mod_rewrite.c >
42- # If we don't have mod_rewrite installed, all 404's
43- # can be sent to index.php, and everything works as normal.
44- ErrorDocument 404 index.php
42+ # If we don't have mod_rewrite installed, all 404's
43+ # can be sent to index.php, and everything works as normal.
44+ ErrorDocument 404 index.php
4545</IfModule >
4646
4747# Disable server signature start
48- ServerSignature Off
48+ ServerSignature Off
4949# Disable server signature end
0 commit comments