Skip to content
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.

Commit

Permalink
.htaccess: no rewrite for .mjs files (#103)
Browse files Browse the repository at this point in the history
Special file type for javascript modules ( https://v8.dev/features/modules#mjs )
  • Loading branch information
iiic authored and dg committed Mar 10, 2020
1 parent 8594307 commit c5087c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/.htaccess
Expand Up @@ -21,7 +21,7 @@ Require all granted
# front controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(pdf|js|ico|gif|jpg|jpeg|png|webp|svg|css|rar|zip|7z|tar\.gz|map|eot|ttf|otf|woff|woff2)$ index.php [L]
RewriteRule !\.(pdf|js|mjs|ico|gif|jpg|jpeg|png|webp|svg|css|rar|zip|7z|tar\.gz|map|eot|ttf|otf|woff|woff2)$ index.php [L]
</IfModule>

# enable gzip compression
Expand Down

0 comments on commit c5087c1

Please sign in to comment.