|
|
|
|
@ -1,5 +1,3 @@ |
|
|
|
|
Options -Indexes |
|
|
|
|
|
|
|
|
|
# Use the front controller as index file. It serves as a fallback solution when |
|
|
|
|
# every other rewrite/redirect fails (e.g. in an aliased environment without |
|
|
|
|
# mod_rewrite). Additionally, this reduces the matching process for the |
|
|
|
|
@ -11,7 +9,7 @@ DirectoryIndex index.php |
|
|
|
|
# feature in your server configuration. Uncomment the following line if you |
|
|
|
|
# install assets as symlinks or if you experience problems related to symlinks |
|
|
|
|
# when compiling LESS/Sass/CoffeScript assets. |
|
|
|
|
# Options FollowSymlinks |
|
|
|
|
# Options +FollowSymlinks |
|
|
|
|
|
|
|
|
|
# Disabling MultiViews prevents unwanted negotiation, e.g. "/index" should not resolve |
|
|
|
|
# to the front controller "/index.php" but be rewritten to "/index.php/index". |
|
|
|
|
@ -29,12 +27,12 @@ DirectoryIndex index.php |
|
|
|
|
# work in environments without path prefix as well, providing a safe, one-size |
|
|
|
|
# fits all solution. But as you do not need it in this case, you can comment |
|
|
|
|
# the following 2 lines to eliminate the overhead. |
|
|
|
|
RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$ |
|
|
|
|
RewriteRule ^(.*) - [E=BASE:%1] |
|
|
|
|
RewriteCond %{REQUEST_URI}::$0 ^(/.+)/(.*)::\2$ |
|
|
|
|
RewriteRule .* - [E=BASE:%1] |
|
|
|
|
|
|
|
|
|
# Sets the HTTP_AUTHORIZATION header removed by Apache |
|
|
|
|
RewriteCond %{HTTP:Authorization} . |
|
|
|
|
RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] |
|
|
|
|
RewriteCond %{HTTP:Authorization} .+ |
|
|
|
|
RewriteRule ^ - [E=HTTP_AUTHORIZATION:%0] |
|
|
|
|
|
|
|
|
|
# Redirect to URI without front controller to prevent duplicate content |
|
|
|
|
# (with and without `/index.php`). Only do this redirect on the initial |
|
|
|
|
@ -47,13 +45,14 @@ DirectoryIndex index.php |
|
|
|
|
# - disable this feature by commenting the following 2 lines or |
|
|
|
|
# - use Apache >= 2.3.9 and replace all L flags by END flags and remove the |
|
|
|
|
# following RewriteCond (best solution) |
|
|
|
|
RewriteCond %{ENV:REDIRECT_STATUS} ^$ |
|
|
|
|
RewriteCond %{ENV:REDIRECT_STATUS} ="" |
|
|
|
|
RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L] |
|
|
|
|
|
|
|
|
|
# If the requested filename exists, simply serve it. |
|
|
|
|
# We only want to let Apache serve files and not directories. |
|
|
|
|
RewriteCond %{REQUEST_FILENAME} -f |
|
|
|
|
RewriteRule ^ - [L] |
|
|
|
|
# Rewrite all other queries to the front controller. |
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f |
|
|
|
|
RewriteRule ^ %{ENV:BASE}/index.php [L] |
|
|
|
|
|
|
|
|
|
# Ignore static files |
|
|
|
|
RewriteRule ^(build)($|/) - [L] |
|
|
|
|
@ -61,9 +60,6 @@ DirectoryIndex index.php |
|
|
|
|
RewriteRule ^(img)($|/) - [L] |
|
|
|
|
RewriteRule ^(libs)($|/) - [L] |
|
|
|
|
RewriteRule ^(main)($|/) - [L] |
|
|
|
|
|
|
|
|
|
# Rewrite all other queries to the front controller. |
|
|
|
|
RewriteRule ^ %{ENV:BASE}/index.php [L] |
|
|
|
|
</IfModule> |
|
|
|
|
|
|
|
|
|
<IfModule !mod_rewrite.c> |
|
|
|
|
@ -74,4 +70,4 @@ DirectoryIndex index.php |
|
|
|
|
RedirectMatch 307 ^/$ /index.php/ |
|
|
|
|
# RedirectTemp cannot be used instead |
|
|
|
|
</IfModule> |
|
|
|
|
</IfModule> |
|
|
|
|
</IfModule> |
|
|
|
|
|