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 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <IfModule mod_fcgid.c>
  2. <IfModule mod_setenvif.c>
  3. <IfModule mod_headers.c>
  4. SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1
  5. RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION
  6. </IfModule>
  7. </IfModule>
  8. </IfModule>
  9. ErrorDocument 403 /core/templates/403.php
  10. ErrorDocument 404 /core/templates/404.php
  11. <IfModule mod_php5.c>
  12. php_value upload_max_filesize 513M
  13. php_value post_max_size 513M
  14. php_value memory_limit 512M
  15. php_value mbstring.func_overload 0
  16. <IfModule env_module>
  17. SetEnv htaccessWorking true
  18. </IfModule>
  19. </IfModule>
  20. <IfModule mod_rewrite.c>
  21. RewriteEngine on
  22. RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  23. RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L]
  24. RewriteRule ^.well-known/host-meta.json /public.php?service=host-meta-json [QSA,L]
  25. RewriteRule ^.well-known/carddav /remote.php/carddav/ [R]
  26. RewriteRule ^.well-known/caldav /remote.php/caldav/ [R]
  27. RewriteRule ^apps/calendar/caldav.php remote.php/caldav/ [QSA,L]
  28. RewriteRule ^apps/contacts/carddav.php remote.php/carddav/ [QSA,L]
  29. RewriteRule ^apps/([^/]*)/(.*\.(css|php))$ index.php?app=$1&getfile=$2 [QSA,L]
  30. RewriteRule ^remote/(.*) remote.php [QSA,L]
  31. </IfModule>
  32. <IfModule mod_mime.c>
  33. AddType image/svg+xml svg svgz
  34. AddEncoding gzip svgz
  35. </IfModule>
  36. <IfModule dir_module>
  37. DirectoryIndex index.php index.html
  38. </IfModule>
  39. AddDefaultCharset utf-8
  40. Options -Indexes