18 lines
405 B
ApacheConf
18 lines
405 B
ApacheConf
Options -MultiViews -Indexes
|
|
|
|
ErrorDocument 403 /index.php
|
|
|
|
<Files "mix-manifest.json">
|
|
Require all denied
|
|
</Files>
|
|
|
|
RewriteEngine On
|
|
|
|
# Handle Authorization Header
|
|
RewriteCond %{HTTP:Authorization} .
|
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
|
|
|
# Send Requests To Front Controller...
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^ index.php [L] |