clqms-fe1/static/.htaccess
mikael-zakaria a96a6ee279 build fix
2026-02-19 16:42:03 +07:00

12 lines
284 B
ApacheConf

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# If the requested filename/directory does not exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all traffic to index.html
RewriteRule ^(.*)$ /index.html [L]
</IfModule>