diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-29 10:02:04 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-29 10:02:04 +0100 |
commit | 2b185b73e283de0e32b9991d302c4270ccaee158 (patch) | |
tree | 1ab45a804bbe43e7399bf28d91521a0c732fa136 | |
parent | 1765e11f7573e61ae4506111ca60a51818a3788a (diff) | |
parent | 4ced903427f64cba0cd8a3d635d84f070fbc86d6 (diff) | |
download | nextcloud-server-2b185b73e283de0e32b9991d302c4270ccaee158.tar.gz nextcloud-server-2b185b73e283de0e32b9991d302c4270ccaee158.zip |
Merge pull request #21993 from owncloud/updater-htacces
Do not rewrite requests to updater
-rw-r--r-- | .htaccess | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess index 1b516789563..4a4adce144c 100644 --- a/.htaccess +++ b/.htaccess @@ -59,6 +59,7 @@ RewriteCond %{REQUEST_FILENAME} !/status.php RewriteCond %{REQUEST_FILENAME} !/ocs/v1.php RewriteCond %{REQUEST_FILENAME} !/ocs/v2.php + RewriteCond %{REQUEST_FILENAME} !/updater/ RewriteCond %{REQUEST_URI} !^/.well-known/acme-challenge/.* RewriteRule .* index.php [PT,E=PATH_INFO:$1] </IfModule> |