Merge pull request #19423 from nextcloud/bugfix/htaccess/firstrun-mp4
Allow to serve static mp4 directly
This commit is contained in:
commit
e2e42d4ffd
|
@ -528,7 +528,7 @@ class Setup {
|
||||||
$content .= "\n Options -MultiViews";
|
$content .= "\n Options -MultiViews";
|
||||||
$content .= "\n RewriteRule ^core/js/oc.js$ index.php [PT,E=PATH_INFO:$1]";
|
$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 RewriteRule ^core/preview.png$ index.php [PT,E=PATH_INFO:$1]";
|
||||||
$content .= "\n RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff2?|ico|jpg|jpeg|map|webm)$";
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff2?|ico|jpg|jpeg|map|webm|mp4)$";
|
||||||
$content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/favicon.ico$";
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/favicon.ico$";
|
||||||
$content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/manifest.json$";
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/manifest.json$";
|
||||||
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/remote.php";
|
$content .= "\n RewriteCond %{REQUEST_FILENAME} !/remote.php";
|
||||||
|
|
Loading…
Reference in New Issue