htaccess standard hinzugefügt

master
David Heidl 2025-03-16 21:32:07 +01:00
parent 3f61c7276e
commit 93273a9266
1 changed files with 11 additions and 0 deletions

11
public/.htaccess 100644
View File

@ -0,0 +1,11 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>