21 lines
615 B
ApacheConf
21 lines
615 B
ApacheConf
|
|
||
|
LoadModule rewrite_module modules/mod_rewrite.so
|
||
|
ServerName nineapache.local
|
||
|
DocumentRoot "/app/public"
|
||
|
<Directory "/app/public">
|
||
|
Options Indexes FollowSymLinks
|
||
|
AllowOverride All
|
||
|
Require all granted
|
||
|
|
||
|
RewriteEngine On
|
||
|
RewriteCond %{REQUEST_URI}::$0 ^(/.+)/(.*)::\2$
|
||
|
RewriteRule .* - [E=BASE:%1]
|
||
|
RewriteCond %{HTTP:Authorization} .+
|
||
|
RewriteRule ^ - [E=HTTP_AUTHORIZATION:%0]
|
||
|
RewriteCond %{ENV:REDIRECT_STATUS} =""
|
||
|
RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]
|
||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
RewriteRule ^ %{ENV:BASE}/index.php [L]
|
||
|
</Directory>
|
||
|
|