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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Version: 9.0.0
  2. <IfModule mod_headers.c>
  3. <IfModule mod_fcgid.c>
  4. <IfModule mod_setenvif.c>
  5. SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1
  6. RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION
  7. </IfModule>
  8. </IfModule>
  9. <IfModule mod_env.c>
  10. # Add security and privacy related headers
  11. Header set X-Content-Type-Options "nosniff"
  12. Header set X-XSS-Protection "1; mode=block"
  13. Header set X-Robots-Tag "none"
  14. Header set X-Frame-Options "SAMEORIGIN"
  15. SetEnv modHeadersAvailable true
  16. </IfModule>
  17. # Add cache control for CSS and JS files
  18. <FilesMatch "\.(css|js)$">
  19. Header set Cache-Control "max-age=7200, public"
  20. </FilesMatch>
  21. </IfModule>
  22. <IfModule mod_php5.c>
  23. php_value upload_max_filesize 513M
  24. php_value post_max_size 513M
  25. php_value memory_limit 512M
  26. php_value mbstring.func_overload 0
  27. php_value always_populate_raw_post_data -1
  28. php_value default_charset 'UTF-8'
  29. php_value output_buffering 0
  30. <IfModule mod_env.c>
  31. SetEnv htaccessWorking true
  32. </IfModule>
  33. </IfModule>
  34. <IfModule mod_rewrite.c>
  35. RewriteEngine on
  36. RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  37. RewriteRule ^\.well-known/host-meta /public.php?service=host-meta [QSA,L]
  38. RewriteRule ^\.well-known/host-meta\.json /public.php?service=host-meta-json [QSA,L]
  39. RewriteRule ^\.well-known/carddav /remote.php/dav/ [R=301,L]
  40. RewriteRule ^\.well-known/caldav /remote.php/dav/ [R=301,L]
  41. RewriteRule ^remote/(.*) remote.php [QSA,L]
  42. RewriteRule ^(build|tests|config|lib|3rdparty|templates)/.* - [R=404,L]
  43. RewriteRule ^(\.|autotest|occ|issue|indie|db_|console).* - [R=404,L]
  44. # Rewrite rules for `front_controller_active`
  45. Options -MultiViews
  46. <IfModule mod_dir.c>
  47. DirectorySlash off
  48. </IfModule>
  49. RewriteRule ^core/js/oc.js$ index.php/core/js/oc.js [PT,E=PATH_INFO:$1]
  50. RewriteRule ^core/preview.png$ index.php/core/preview.png [PT,E=PATH_INFO:$1]
  51. RewriteCond %{REQUEST_FILENAME} !\.(css|js|svg|gif|png|html|ttf|woff)$
  52. RewriteCond %{REQUEST_FILENAME} !/remote.php
  53. RewriteCond %{REQUEST_FILENAME} !/public.php
  54. RewriteCond %{REQUEST_FILENAME} !/cron.php
  55. RewriteCond %{REQUEST_FILENAME} !/core/ajax/update.php
  56. RewriteCond %{REQUEST_FILENAME} !/status.php
  57. RewriteCond %{REQUEST_FILENAME} !/ocs/v1.php
  58. RewriteCond %{REQUEST_FILENAME} !/ocs/v2.php
  59. RewriteRule .* index.php [PT,E=PATH_INFO:$1]
  60. </IfModule>
  61. <IfModule mod_mime.c>
  62. AddType image/svg+xml svg svgz
  63. AddEncoding gzip svgz
  64. </IfModule>
  65. <IfModule mod_dir.c>
  66. DirectoryIndex index.php index.html
  67. </IfModule>
  68. AddDefaultCharset utf-8
  69. Options -Indexes
  70. <IfModule pagespeed_module>
  71. ModPagespeed Off
  72. </IfModule>