You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.htaccess 852B

12345678910111213141516171819202122
  1. ErrorDocument 403 /core/templates/403.php
  2. ErrorDocument 404 /core/templates/404.php
  3. <IfModule mod_php5.c>
  4. php_value upload_max_filesize 513M
  5. php_value post_max_size 513M
  6. php_value memory_limit 512M
  7. <IfModule env_module>
  8. SetEnv htaccessWorking true
  9. </IfModule>
  10. </IfModule>
  11. <IfModule mod_rewrite.c>
  12. RewriteEngine on
  13. RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  14. RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L]
  15. RewriteRule ^.well-known/carddav /remote.php/carddav/ [R]
  16. RewriteRule ^.well-known/caldav /remote.php/caldav/ [R]
  17. RewriteRule ^apps/calendar/caldav.php remote.php/caldav/ [QSA,L]
  18. RewriteRule ^apps/contacts/carddav.php remote.php/carddav/ [QSA,L]
  19. RewriteRule ^apps/([^/]*)/(.*\.(css|php))$ index.php?app=$1&getfile=$2 [QSA,L]
  20. RewriteRule ^remote/(.*) remote.php [QSA,L]
  21. </IfModule>
  22. Options -Indexes