laravel htaccess for aws ec2

Solutions on MaxInterview for laravel htaccess for aws ec2 by the best coders in the world

showing results for - "laravel htaccess for aws ec2"
Yoan
14 Mar 2017
1<IfModule mod_rewrite.c>
2    <IfModule mod_negotiation.c>
3        Options -MultiViews -Indexes
4    </IfModule>
5
6    RewriteEngine On
7
8    # Handle Authorization Header
9    RewriteCond %{HTTP:Authorization} .
10    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
11
12    # Redirect Trailing Slashes If Not A Folder...
13    RewriteCond %{REQUEST_FILENAME} !-d
14    RewriteCond %{REQUEST_URI} (.+)/$
15    RewriteRule ^ %1 [L,R=301]
16
17    # Handle Front Controller...
18    RewriteCond %{REQUEST_FILENAME} !-d
19    RewriteCond %{REQUEST_FILENAME} !-f
20    RewriteRule ^ index.php [L]
21</IfModule>
22# STRONG HTACCESS PROTECTION
23<Files ~ "^.*\.([Ee][Nn][Vv])">
24 order allow,deny
25 deny from all
26 satisfy all
27</Files>
28