diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-12-01 18:55:18 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-12-01 19:06:48 +0100 |
commit | 002e7197890221d9a24dc987f7a02a958bf3e4c7 (patch) | |
tree | 3f6ae05f9faf0d704df5352f268ca4243fdcafd7 | |
parent | 8931ba4a0d574a05cf4415f2556bdd3ee0388ba9 (diff) | |
download | nextcloud-server-002e7197890221d9a24dc987f7a02a958bf3e4c7.tar.gz nextcloud-server-002e7197890221d9a24dc987f7a02a958bf3e4c7.zip |
Set "SetEnv" within base `.htaccess` file
mod_rewrite as used by the front controller may require a `RewriteBase` in case the installation is done using an alias. Since we cannot enforce a writable `.htaccess` file this will move the `front_controller_active` environment variable into the main .htaccess file. If administrators decide to have this one not writable they can still enable this feature by setting the `front_controller_active` environment variable within the Apache config.
-rw-r--r-- | .htaccess | 25 | ||||
-rw-r--r-- | lib/private/setup.php | 3 | ||||
-rw-r--r-- | version.php | 2 |
3 files changed, 16 insertions, 14 deletions
diff --git a/.htaccess b/.htaccess index 5c11eff9f37..d82cb8ade17 100644 --- a/.htaccess +++ b/.htaccess @@ -44,19 +44,18 @@ RewriteRule ^(build|tests|config|lib|3rdparty|templates)/.* - [R=404,L] RewriteRule ^(\.|autotest|occ|issue|indie|db_|console).* - [R=404,L] - <IfModule mod_env.c> - SetEnv front_controller_active true - RewriteRule ^core/js/oc.js$ index.php [PT,E=PATH_INFO:$1] - RewriteRule ^core/preview.png$ index.php [PT,E=PATH_INFO:$1] - RewriteCond %{REQUEST_FILENAME} !\.(css|js|svg|gif|png|html|ttf|woff)$ - RewriteCond %{REQUEST_FILENAME} !/remote.php - RewriteCond %{REQUEST_FILENAME} !/public.php - RewriteCond %{REQUEST_FILENAME} !/cron.php - RewriteCond %{REQUEST_FILENAME} !/status.php - RewriteCond %{REQUEST_FILENAME} !/ocs/v1.php - RewriteCond %{REQUEST_FILENAME} !/ocs/v2.php - RewriteRule .* index.php [PT,E=PATH_INFO:$1] - </IfModule> + # Rewrite rules for `front_controller_active` + RewriteRule ^core/js/oc.js$ index.php [PT,E=PATH_INFO:$1] + RewriteRule ^core/preview.png$ index.php [PT,E=PATH_INFO:$1] + RewriteCond %{REQUEST_FILENAME} !\.(css|js|svg|gif|png|html|ttf|woff)$ + RewriteCond %{REQUEST_FILENAME} !/remote.php + RewriteCond %{REQUEST_FILENAME} !/public.php + RewriteCond %{REQUEST_FILENAME} !/cron.php + RewriteCond %{REQUEST_FILENAME} !/core/ajax/update.php + RewriteCond %{REQUEST_FILENAME} !/status.php + RewriteCond %{REQUEST_FILENAME} !/ocs/v1.php + RewriteCond %{REQUEST_FILENAME} !/ocs/v2.php + RewriteRule .* index.php [PT,E=PATH_INFO:$1] </IfModule> <IfModule mod_mime.c> diff --git a/lib/private/setup.php b/lib/private/setup.php index 1f91240e9da..4a4b935df03 100644 --- a/lib/private/setup.php +++ b/lib/private/setup.php @@ -436,6 +436,9 @@ class Setup { // Add rewrite base $content.="\n<IfModule mod_rewrite.c>"; $content.="\n RewriteBase ".\OC::$WEBROOT; + $content .= "\n <IfModule mod_env.c>"; + $content .= "\n SetEnv front_controller_active true"; + $content.="\n </IfModule>"; $content.="\n</IfModule>"; if ($content !== '') { diff --git a/version.php b/version.php index 68ed5c9c217..ca90fdb3167 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,7 @@ // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version = array(9, 0, 0, 4); +$OC_Version = array(9, 0, 0, 5); // The human readable string $OC_VersionString = '9.0 pre alpha'; |