first commit

This commit is contained in:
2026-04-30 14:38:11 +02:00
commit e22bbde336
1994 changed files with 613950 additions and 0 deletions

23
.htaccess Normal file
View File

@@ -0,0 +1,23 @@
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /
# Protect application and system files from being viewed
RewriteRule ^(application|modules|system) - [F,L]
#stare strony przekierowanie
RewriteCond %{REQUEST_URI} /urzadzenia-uslugowe-i-produkcyjne-monochromatyczne
RewriteRule .* http://%{HTTP_HOST}/urzadzenia-uslugowe-monochromatyczne [R=301,L]
RewriteCond %{REQUEST_URI} /urzadzenia-uslugowe-i-produkcyjne-kolorowe
RewriteRule .* http://%{HTTP_HOST}/urzadzenia-uslugowe-kolorowe [R=301,L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule ^(.+)$ index.php?kohana_uri=$1 [L]