clqms-fe1/static/.htaccess

12 lines
284 B
ApacheConf
Raw Normal View History

2026-02-19 16:42:03 +07:00
<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>