2025-11-05 09:32:00 +08:00

10 lines
248 B
ApacheConf

<IfModule mod_rewrite.c>
RewriteEngine On
# Serve existing files directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Redirect everything to index.html
RewriteRule ^ index.html [L]
</IfModule>