mga

mga / .htaccess for static sveltekit websites

Last active 3 months ago

Like 0
.htaccess Raw
1Options -Indexes
2DirectoryIndex index.html
3
4RewriteEngine on
5RewriteBase /
6RewriteCond %{REQUEST_FILENAME} !-f
7RewriteCond %{REQUEST_FILENAME} !-d
8RewriteRule . /index.html [L,QSA]
9
10AddType application/javascript .js .mjs
11