first commit

This commit is contained in:
2026-01-29 21:07:02 +01:00
commit bda2bc85d0
22 changed files with 2594 additions and 0 deletions

9
.htaccess Normal file
View File

@@ -0,0 +1,9 @@
RewriteEngine On
RewriteBase /
# Jeśli plik lub katalog istnieje - nie przekierowuj
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Przekieruj wszystko do index.php
RewriteRule ^(.*)$ index.php?route=$1 [QSA,L]