diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-03-09 15:13:07 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-03-09 15:13:07 +0100 |
commit | bc4a043a7645efe207e3f1208ac3dea41b056384 (patch) | |
tree | 42d851abb5ad7405b9c5dab8691b7f5d1f71bd8e /.htaccess | |
parent | eff17fd3b7021019e387e4f48a38ec450f622649 (diff) | |
download | nextcloud-server-bc4a043a7645efe207e3f1208ac3dea41b056384.tar.gz nextcloud-server-bc4a043a7645efe207e3f1208ac3dea41b056384.zip |
Add base rewrite rule only when RewriteBase is defined
In case Apache is configured with an `Alias` such as with the ownCloud packages the rewrite rules will fail when no valid RewriteBase is configured.
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess index ec33fe31e15..085467e91ca 100644 --- a/.htaccess +++ b/.htaccess @@ -65,7 +65,6 @@ RewriteCond %{REQUEST_FILENAME} !/updater/ RewriteCond %{REQUEST_FILENAME} !/ocs-provider/ RewriteCond %{REQUEST_URI} !^/.well-known/acme-challenge/.* - RewriteRule .* index.php [PT,E=PATH_INFO:$1] </IfModule> <IfModule mod_mime.c> AddType image/svg+xml svg svgz |