diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-12-01 17:17:48 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-12-01 17:17:48 +0100 |
commit | 8931ba4a0d574a05cf4415f2556bdd3ee0388ba9 (patch) | |
tree | 38635a8d2181478f8200c5bb7dea96b26c184822 /.htaccess | |
parent | 74e8c25a5b48eb4b675de262ced1702dec4307f4 (diff) | |
parent | 2515cb17be18da4aee32167259ee75fdc7a5a56b (diff) | |
download | nextcloud-server-8931ba4a0d574a05cf4415f2556bdd3ee0388ba9.tar.gz nextcloud-server-8931ba4a0d574a05cf4415f2556bdd3ee0388ba9.zip |
Merge pull request #14081 from owncloud/use-pretty-urls
Support pretty URLs
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess index 615f5e7fc96..5c11eff9f37 100644 --- a/.htaccess +++ b/.htaccess @@ -43,6 +43,21 @@ RewriteRule ^remote/(.*) remote.php [QSA,L] 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> + </IfModule> <IfModule mod_mime.c> AddType image/svg+xml svg svgz |