Procházet zdrojové kódy

Fix loading of .woff2 files in .htaccess

Signed-off-by: Julius Härtl <jus@bitgrid.net>
tags/v15.0.0RC1
Julius Härtl před 5 roky
rodič
revize
b9f2ce2796
Žádný účet není propojen s e-mailovou adresou tvůrce revize
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 1
    1
      .htaccess
  2. 1
    1
      lib/private/Setup.php

+ 1
- 1
.htaccess Zobrazit soubor

@@ -26,7 +26,7 @@
</FilesMatch>

# Let browsers cache WOFF files for a week
<FilesMatch "\.woff$">
<FilesMatch "\.woff2?$">
Header set Cache-Control "max-age=604800"
</FilesMatch>
</IfModule>

+ 1
- 1
lib/private/Setup.php Zobrazit soubor

@@ -504,7 +504,7 @@ class Setup {
$content .= "\n Options -MultiViews";
$content .= "\n RewriteRule ^core/js/oc.js$ index.php [PT,E=PATH_INFO:$1]";
$content .= "\n RewriteRule ^core/preview.png$ index.php [PT,E=PATH_INFO:$1]";
$content .= "\n RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$";
$content .= "\n RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff2?|ico|jpg|jpeg)$";
$content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/favicon.ico$";
$content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/manifest.json$";
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/remote.php";

Načítá se…
Zrušit
Uložit