final updated

This commit is contained in:
2025-11-11 21:31:07 +08:00
parent 1a77719dfa
commit e6a2bdad0b
8 changed files with 31 additions and 25 deletions

16
public/.htaccess Normal file
View File

@@ -0,0 +1,16 @@
Options -MultiViews
RewriteEngine On
RewriteBase /
# Don't rewrite files or directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# Don't rewrite assets, images, fonts
RewriteCond %{REQUEST_URI} ^/(assets|images|fonts)/ [OR]
RewriteCond %{REQUEST_URI} \.(js|css|jpg|jpeg|png|gif|webp|svg|ico|woff|woff2|ttf|otf|eot)$ [NC]
RewriteRule ^ - [L]
# Route everything else to index.html
RewriteRule ^ /index.html [L]

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB