1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- DirectoryIndex app.php
- <IfModule mod_negotiation.c>
- Options -MultiViews
- </IfModule>
- <IfModule mod_rewrite.c>
- RewriteEngine On
-
-
-
-
-
-
-
- RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
- RewriteRule ^(.*) - [E=BASE:%1]
-
- RewriteCond %{HTTP:Authorization} .
- RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
-
-
-
-
-
-
-
-
-
-
-
- RewriteCond %{ENV:REDIRECT_STATUS} ^$
- RewriteRule ^app\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]
-
-
- RewriteCond %{REQUEST_FILENAME} -f
- RewriteRule ^ - [L]
-
- RewriteRule ^ %{ENV:BASE}/app.php [L]
- </IfModule>
- <IfModule !mod_rewrite.c>
- <IfModule mod_alias.c>
-
-
-
- RedirectMatch 302 ^/$ /app.php/
-
- </IfModule>
- </IfModule>
|