Initial commit

This commit is contained in:
Ivan Petrov
2025-12-24 19:19:01 +03:00
commit a7097c6178
19493 changed files with 94306 additions and 0 deletions

16
.htaccess Normal file
View File

@@ -0,0 +1,16 @@
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/playarea/assets/
RewriteRule ^ - [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteCond %{REQUEST_URI} \.(png|jpg|gif|jpeg|bmp|css|js|svg|ttf)$
RewriteRule ^ - [L]
RewriteRule ^(.*[^/])$ /$1/ [L,R=301]
RewriteRule ^ index.php [QSA,L]