27 lines
874 B
ApacheConf
27 lines
874 B
ApacheConf
|
<IfModule mod_rewrite.c>
|
||
|
<IfModule mod_negotiation.c>
|
||
|
Options -MultiViews
|
||
|
</IfModule>
|
||
|
|
||
|
RewriteEngine On
|
||
|
|
||
|
# Redirect Trailing Slashes If Not A Folder...
|
||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
RewriteRule ^(.*)/$ /$1 [L,R=301]
|
||
|
|
||
|
# Handle Front Controller...
|
||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
RewriteRule ^ index.php [L]
|
||
|
|
||
|
# Handle Authorization Header
|
||
|
RewriteCond %{HTTP:Authorization} .
|
||
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||
|
</IfModule>
|
||
|
|
||
|
# php -- BEGIN cPanel-generated handler, do not edit
|
||
|
# NOTE this account's php is controlled via FPM and the vhost, this is a place holder.
|
||
|
# Do not edit. This next line is to support the cPanel php wrapper (php_cli).
|
||
|
# AddType application/x-httpd-ea-php71 .php .phtml
|
||
|
# php -- END cPanel-generated handler, do not edit
|