first commit

This commit is contained in:
2024-10-23 12:55:46 +02:00
commit 85c92aa932
8453 changed files with 1186172 additions and 0 deletions

562
.htaccess Normal file
View File

@@ -0,0 +1,562 @@
RewriteEngine On
RewriteBase /
Options +FollowSymlinks
Options -Indexes
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{SERVER_PORT} !=443
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=permanent]
## Remove trailing slash
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteCond %{REQUEST_URI} !^/admin/(.*) [NC]
RewriteRule ^(.*)/$ https://%{HTTP_HOST}/$1 [L,R=301]
ErrorDocument 404 /404.html
RewriteCond %{REQUEST_URI} !^(.*)/libraries/(.*) [NC]
RewriteCond %{REQUEST_URI} !^(.*)/layout/(.*) [NC]
RewriteRule ^admin/([^/]*)/([^/]*)/(.*)$ admin/index.php?module=$1&action=$2&$3 [L]
RewriteRule ^admin/$ admin/index.php [L]
RewriteRule ^wyszukiwarka/(.*)/([0-9]*)$ index.php?module=search&action=search_results&query=$1&bs=$2 [L]
RewriteRule ^wyszukiwarka/(.*)$ index.php?module=search&action=search_results&query=$1&bs=1 [L]
RewriteRule ^zamowienie/([a-zA-Z0-9-]*)$ index.php?module=shop_order&action=order_details&order_hash=$1 [L]
RewriteRule ^potwierdzenie-platnosci/([a-zA-Z0-9-]*)$ index.php?module=shop_order&action=payment_confirmation&order_hash=$1 [L]
RewriteRule ^tpay-status$ index.php?module=shop_order&action=payment_status_tpay%{QUERY_STRING} [L]
RewriteRule ^platnosc-status$ index.php?module=shop_order&action=payment_status_hotpay%{QUERY_STRING} [L]
RewriteRule ^przelewy24-status$ index.php?module=shop_order&action=payment_status_przelewy24pl%{QUERY_STRING} [L]
RewriteRule ^koszyk$ index.php?module=shop_basket&action=main_view [L]
RewriteRule ^koszyk-podsumowanie$ index.php?module=shop_basket&action=summary_view [L]
RewriteRule ^zloz-zamowienie$ index.php?module=shop_basket&action=basket_save [L]
RewriteRule ^rejestracja$ index.php?module=shop_client&action=register_form [L]
RewriteRule ^logowanie$ index.php?module=shop_client&action=login_form [L]
RewriteRule ^wylogowanie$ index.php?module=shop_client&action=logout [L]
RewriteRule ^odzyskiwanie-hasla$ index.php?module=shop_client&action=recover_password [L]
RewriteRule ^panel-klienta/zamowienia$ index.php?module=shop_client&action=client_orders [L]
RewriteRule ^panel-klienta/adresy$ index.php?module=shop_client&action=client_addresses [L]
RewriteRule ^panel-klienta/nowy-adres$ index.php?module=shop_client&action=address_edit [L]
RewriteRule ^panel-klienta/edytuj-adres/([0-9]*)$ index.php?module=shop_client&action=address_edit&id=$1 [L]
RewriteRule ^panel-klienta/usun-adres/([0-9]*)$ index.php?module=shop_client&action=address_delete&id=$1 [L]
RewriteRule ^thumb/([0-9]*)/([0-9]*)/(.*)$ /libraries/thumb.php?img=$3&w=$1&h=$2 [L]
RewriteCond %{REQUEST_URI} ^/shopBasket/(.*)/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)/(.*)$ index.php?module=$1&action=$2&$3 [L]
RewriteCond %{REQUEST_URI} ^/shopClient/(.*)/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)/(.*)$ index.php?module=$1&action=$2&$3 [L]
RewriteCond %{REQUEST_URI} ^/shopProduct/(.*)/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)/(.*)$ index.php?module=$1&action=$2&$3 [L]
RewriteCond %{REQUEST_URI} ^/shopCoupon/(.*)/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)/(.*)$ index.php?module=$1&action=$2&$3 [L]
RewriteCond %{REQUEST_URI} ^/search/(.*)/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)/(.*)$ index.php?module=$1&action=$2&$3 [L]
RewriteCond %{REQUEST_URI} ^/shopBasket/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)$ index.php?module=$1&action=$2 [L]
RewriteCond %{REQUEST_URI} ^/shopClient/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)$ index.php?module=$1&action=$2 [L]
RewriteCond %{REQUEST_URI} ^/shopProduct/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)$ index.php?module=$1&action=$2 [L]
RewriteCond %{REQUEST_URI} ^/shopCoupon/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)$ index.php?module=$1&action=$2 [L]
RewriteCond %{REQUEST_URI} ^/search/(.*) [NC]
RewriteRule ^([^/]*)/([^/]*)$ index.php?module=$1&action=$2 [L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index.php
RewriteRule ^ /%1 [R=301,L]
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript
</IfModule>
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault "access plus 1 month"
ExpiresByType text/css "access plus 1 year"
ExpiresByType application/json "access plus 0 seconds"
ExpiresByType application/xml "access plus 0 seconds"
ExpiresByType text/xml "access plus 0 seconds"
ExpiresByType image/x-icon "access plus 1 week"
ExpiresByType text/x-component "access plus 1 month"
ExpiresByType text/html "access plus 0 seconds"
ExpiresByType application/javascript "access plus 1 year"
ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds"
ExpiresByType text/cache-manifest "access plus 0 seconds"
ExpiresByType audio/ogg "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType video/mp4 "access plus 1 month"
ExpiresByType video/ogg "access plus 1 month"
ExpiresByType video/webm "access plus 1 month"
ExpiresByType application/atom+xml "access plus 1 hour"
ExpiresByType application/rss+xml "access plus 1 hour"
ExpiresByType application/font-woff "access plus 1 month"
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
ExpiresByType application/x-font-ttf "access plus 1 month"
ExpiresByType font/opentype "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"
</IfModule>
<Files *.conf>
Order Deny,Allow
Deny from all
</Files>
<Files *.log>
Order Deny,Allow
Deny from all
</Files>
<Files *.ini>
Order Deny,Allow
Deny from all
</Files>
RewriteRule ^pl/$ index.php?a=change_language&id=pl [L]
RewriteRule ^newsletter/signin/$ index.php?module=newsletter&action=signin [L]
RewriteRule ^newsletter/confirm/hash=(.*)$ index.php?module=newsletter&action=confirm&hash=$1 [L]
RewriteRule ^newsletter/unsubscribe/hash=(.*)$ index.php?module=newsletter&action=unsubscribe&hash=$1 [L]
RewriteRule ^producenci$ index.php?module=shop_producer&action=list&layout_id=2&%{QUERY_STRING} [L]
RewriteRule ^producent/stlflix$ index.php?module=shop_producer&action=products&producer_id=23&layout_id=2&%{QUERY_STRING} [L]
RewriteRule ^producent/stlflix/([0-9]+)$ index.php?module=shop_producer&action=products&producer_id=23&layout_id=2&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^producent/signum-workshop$ index.php?module=shop_producer&action=products&producer_id=24&layout_id=2&%{QUERY_STRING} [L]
RewriteRule ^producent/signum-workshop/([0-9]+)$ index.php?module=shop_producer&action=products&producer_id=24&layout_id=2&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^producent/stlminiatures$ index.php?module=shop_producer&action=products&producer_id=25&layout_id=2&%{QUERY_STRING} [L]
RewriteRule ^producent/stlminiatures/([0-9]+)$ index.php?module=shop_producer&action=products&producer_id=25&layout_id=2&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezenty-dla$ index.php?category=121&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezenty-dla/([0-9]+)$ index.php?category=121&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezenty-dla/1$ prezenty-dla [R=301,L]
RewriteRule ^prezent-dla-niej$ index.php?category=155&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-niej/([0-9]+)$ index.php?category=155&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-niej/1$ prezent-dla-niej [R=301,L]
RewriteRule ^prezent-dla-babci$ index.php?category=122&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-babci/([0-9]+)$ index.php?category=122&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-babci/1$ prezent-dla-babci [R=301,L]
RewriteRule ^prezent-dla-dziewczyny$ index.php?category=157&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-dziewczyny/([0-9]+)$ index.php?category=157&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-dziewczyny/1$ prezent-dla-dziewczyny [R=301,L]
RewriteRule ^prezent-dla-niego$ index.php?category=156&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-niego/([0-9]+)$ index.php?category=156&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-niego/1$ prezent-dla-niego [R=301,L]
RewriteRule ^prezent-dla-dziadka$ index.php?category=123&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-dziadka/([0-9]+)$ index.php?category=123&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-dziadka/1$ prezent-dla-dziadka [R=301,L]
RewriteRule ^prezent-dla-chlopaka$ index.php?category=158&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-chlopaka/([0-9]+)$ index.php?category=158&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-chlopaka/1$ prezent-dla-chlopaka [R=301,L]
RewriteRule ^prezent-dla-dziecka$ index.php?category=124&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-dziecka/([0-9]+)$ index.php?category=124&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-dla-dziecka/1$ prezent-dla-dziecka [R=301,L]
RewriteRule ^inne-okazje$ index.php?category=104&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^inne-okazje/([0-9]+)$ index.php?category=104&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^inne-okazje/1$ inne-okazje [R=301,L]
RewriteRule ^prezent-na-boze-narodzenie$ index.php?category=145&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-na-boze-narodzenie/([0-9]+)$ index.php?category=145&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-na-boze-narodzenie/1$ prezent-na-boze-narodzenie [R=301,L]
RewriteRule ^bombki$ index.php?category=149&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^bombki/([0-9]+)$ index.php?category=149&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^bombki/1$ bombki [R=301,L]
RewriteRule ^kartki-swiateczne$ index.php?category=150&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^kartki-swiateczne/([0-9]+)$ index.php?category=150&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^kartki-swiateczne/1$ kartki-swiateczne [R=301,L]
RewriteRule ^wianki-swiateczne$ index.php?category=151&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^wianki-swiateczne/([0-9]+)$ index.php?category=151&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^wianki-swiateczne/1$ wianki-swiateczne [R=301,L]
RewriteRule ^prezenty-z-okazji-chrztu$ index.php?category=107&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezenty-z-okazji-chrztu/([0-9]+)$ index.php?category=107&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezenty-z-okazji-chrztu/1$ prezenty-z-okazji-chrztu [R=301,L]
RewriteRule ^dekoracje-i-akcesoria$ index.php?category=153&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^dekoracje-i-akcesoria/([0-9]+)$ index.php?category=153&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^dekoracje-i-akcesoria/1$ dekoracje-i-akcesoria [R=301,L]
RewriteRule ^podziekowania-na-chrzest$ index.php?category=114&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^podziekowania-na-chrzest/([0-9]+)$ index.php?category=114&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^podziekowania-na-chrzest/1$ podziekowania-na-chrzest [R=301,L]
RewriteRule ^prosby-o-bycie-rodzicem-chrzestnym$ index.php?category=116&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prosby-o-bycie-rodzicem-chrzestnym/([0-9]+)$ index.php?category=116&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prosby-o-bycie-rodzicem-chrzestnym/1$ prosby-o-bycie-rodzicem-chrzestnym [R=301,L]
RewriteRule ^tabliczki-z-modlitwa$ index.php?category=115&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^tabliczki-z-modlitwa/([0-9]+)$ index.php?category=115&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^tabliczki-z-modlitwa/1$ tabliczki-z-modlitwa [R=301,L]
RewriteRule ^zaproszenia-na-chrzest-swiety$ index.php?category=113&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^zaproszenia-na-chrzest-swiety/([0-9]+)$ index.php?category=113&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^zaproszenia-na-chrzest-swiety/1$ zaproszenia-na-chrzest-swiety [R=301,L]
RewriteRule ^prezent-na-dzien-chlopaka$ index.php?category=141&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-na-dzien-chlopaka/([0-9]+)$ index.php?category=141&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-na-dzien-chlopaka/1$ prezent-na-dzien-chlopaka [R=301,L]
RewriteRule ^prezent-na-dzien-dziewczyn$ index.php?category=144&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-na-dzien-dziewczyn/([0-9]+)$ index.php?category=144&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-na-dzien-dziewczyn/1$ prezent-na-dzien-dziewczyn [R=301,L]
RewriteRule ^prezenty-na-dzien-babci-i-dziadka$ index.php?category=118&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezenty-na-dzien-babci-i-dziadka/([0-9]+)$ index.php?category=118&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezenty-na-dzien-babci-i-dziadka/1$ prezenty-na-dzien-babci-i-dziadka [R=301,L]
RewriteRule ^breloczki-dla-babci-i-dziadka$ index.php?category=162&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^breloczki-dla-babci-i-dziadka/([0-9]+)$ index.php?category=162&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^breloczki-dla-babci-i-dziadka/1$ breloczki-dla-babci-i-dziadka [R=301,L]
RewriteRule ^magnesy-na-dzien-babci-i-dziadka$ index.php?category=159&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^magnesy-na-dzien-babci-i-dziadka/([0-9]+)$ index.php?category=159&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^magnesy-na-dzien-babci-i-dziadka/1$ magnesy-na-dzien-babci-i-dziadka [R=301,L]
RewriteRule ^tabliczki-na-dzien-babci-i-dziadka$ index.php?category=160&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^tabliczki-na-dzien-babci-i-dziadka/([0-9]+)$ index.php?category=160&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^tabliczki-na-dzien-babci-i-dziadka/1$ tabliczki-na-dzien-babci-i-dziadka [R=301,L]
RewriteRule ^zakladki-na-dzien-babci-i-dziadka$ index.php?category=161&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^zakladki-na-dzien-babci-i-dziadka/([0-9]+)$ index.php?category=161&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^zakladki-na-dzien-babci-i-dziadka/1$ zakladki-na-dzien-babci-i-dziadka [R=301,L]
RewriteRule ^prezent-na-dzien-dziecka$ index.php?category=112&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezent-na-dzien-dziecka/([0-9]+)$ index.php?category=112&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezent-na-dzien-dziecka/1$ prezent-na-dzien-dziecka [R=301,L]
RewriteRule ^breloczki-dla-dzieci$ index.php?category=126&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^breloczki-dla-dzieci/([0-9]+)$ index.php?category=126&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^breloczki-dla-dzieci/1$ breloczki-dla-dzieci [R=301,L]
RewriteRule ^zakladki-do-ksiazek-dla-dziecka$ index.php?category=117&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^zakladki-do-ksiazek-dla-dziecka/([0-9]+)$ index.php?category=117&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^zakladki-do-ksiazek-dla-dziecka/1$ zakladki-do-ksiazek-dla-dziecka [R=301,L]
RewriteRule ^prezenty-z-okazji-narodzin-dziecka$ index.php?category=105&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezenty-z-okazji-narodzin-dziecka/([0-9]+)$ index.php?category=105&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezenty-z-okazji-narodzin-dziecka/1$ prezenty-z-okazji-narodzin-dziecka [R=301,L]
RewriteRule ^magnesy-na-narodziny-dziecka$ index.php?category=154&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^magnesy-na-narodziny-dziecka/([0-9]+)$ index.php?category=154&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^magnesy-na-narodziny-dziecka/1$ magnesy-na-narodziny-dziecka [R=301,L]
RewriteRule ^metryczki-dzieciece$ index.php?category=125&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^metryczki-dzieciece/([0-9]+)$ index.php?category=125&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^metryczki-dzieciece/1$ metryczki-dzieciece [R=301,L]
RewriteRule ^tabliczki-do-zdjec$ index.php?category=110&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^tabliczki-do-zdjec/([0-9]+)$ index.php?category=110&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^tabliczki-do-zdjec/1$ tabliczki-do-zdjec [R=301,L]
RewriteRule ^prezenty-na-wielkanoc$ index.php?category=111&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^prezenty-na-wielkanoc/([0-9]+)$ index.php?category=111&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^prezenty-na-wielkanoc/1$ prezenty-na-wielkanoc [R=301,L]
RewriteRule ^dekoracje-i-ozdoby$ index.php?category=108&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^dekoracje-i-ozdoby/([0-9]+)$ index.php?category=108&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^dekoracje-i-ozdoby/1$ dekoracje-i-ozdoby [R=301,L]
RewriteRule ^dekoracja-scienne$ index.php?category=152&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^dekoracja-scienne/([0-9]+)$ index.php?category=152&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^dekoracja-scienne/1$ dekoracja-scienne [R=301,L]
RewriteRule ^dekoracje-i-ozdoby-do-pokoju-dziecka$ index.php?category=109&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^dekoracje-i-ozdoby-do-pokoju-dziecka/([0-9]+)$ index.php?category=109&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^dekoracje-i-ozdoby-do-pokoju-dziecka/1$ dekoracje-i-ozdoby-do-pokoju-dziecka [R=301,L]
RewriteRule ^dekoracje-i-ozdoby/inne$ index.php?category=119&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^dekoracje-i-ozdoby/inne/([0-9]+)$ index.php?category=119&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^dekoracje-i-ozdoby/inne/1$ dekoracje-i-ozdoby/inne [R=301,L]
RewriteRule ^zakladki-do-ksiazek$ index.php?category=120&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^zakladki-do-ksiazek/([0-9]+)$ index.php?category=120&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^zakladki-do-ksiazek/1$ zakladki-do-ksiazek [R=301,L]
RewriteRule ^figurki-3d$ index.php?category=127&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-3d/([0-9]+)$ index.php?category=127&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-3d/1$ figurki-3d [R=301,L]
RewriteRule ^figurki-centaury$ index.php?category=134&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-centaury/([0-9]+)$ index.php?category=134&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-centaury/1$ figurki-centaury [R=301,L]
RewriteRule ^figurki-czlowiek$ index.php?category=132&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-czlowiek/([0-9]+)$ index.php?category=132&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-czlowiek/1$ figurki-czlowiek [R=301,L]
RewriteRule ^figurki-demony$ index.php?category=139&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-demony/([0-9]+)$ index.php?category=139&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-demony/1$ figurki-demony [R=301,L]
RewriteRule ^figurki-elfy$ index.php?category=128&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-elfy/([0-9]+)$ index.php?category=128&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-elfy/1$ figurki-elfy [R=301,L]
RewriteRule ^figurki-ghule$ index.php?category=135&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-ghule/([0-9]+)$ index.php?category=135&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-ghule/1$ figurki-ghule [R=301,L]
RewriteRule ^figurki-gnomy$ index.php?category=129&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-gnomy/([0-9]+)$ index.php?category=129&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-gnomy/1$ figurki-gnomy [R=301,L]
RewriteRule ^figurki-krasnoludow$ index.php?category=133&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-krasnoludow/([0-9]+)$ index.php?category=133&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-krasnoludow/1$ figurki-krasnoludow [R=301,L]
RewriteRule ^figurki-orki$ index.php?category=131&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-orki/([0-9]+)$ index.php?category=131&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-orki/1$ figurki-orki [R=301,L]
RewriteRule ^figurki-smoki$ index.php?category=136&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-smoki/([0-9]+)$ index.php?category=136&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-smoki/1$ figurki-smoki [R=301,L]
RewriteRule ^figurki-trolle$ index.php?category=138&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-trolle/([0-9]+)$ index.php?category=138&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-trolle/1$ figurki-trolle [R=301,L]
RewriteRule ^figurki-wampiry$ index.php?category=137&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-wampiry/([0-9]+)$ index.php?category=137&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-wampiry/1$ figurki-wampiry [R=301,L]
RewriteRule ^figurki-zombie$ index.php?category=130&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-zombie/([0-9]+)$ index.php?category=130&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-zombie/1$ figurki-zombie [R=301,L]
RewriteRule ^figurki-inne$ index.php?category=140&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^figurki-inne/([0-9]+)$ index.php?category=140&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^figurki-inne/1$ figurki-inne [R=301,L]
RewriteRule ^zawieszki$ index.php?category=146&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^zawieszki/([0-9]+)$ index.php?category=146&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^zawieszki/1$ zawieszki [R=301,L]
RewriteRule ^zawieszki-z-czerwona-kokardka$ index.php?category=147&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^zawieszki-z-czerwona-kokardka/([0-9]+)$ index.php?category=147&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^zawieszki-z-czerwona-kokardka/1$ zawieszki-z-czerwona-kokardka [R=301,L]
RewriteRule ^zawieszki-do-smoczka$ index.php?category=148&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^zawieszki-do-smoczka/([0-9]+)$ index.php?category=148&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^zawieszki-do-smoczka/1$ zawieszki-do-smoczka [R=301,L]
RewriteRule ^girlandy$ index.php?category=163&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^girlandy/([0-9]+)$ index.php?category=163&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^girlandy/1$ girlandy [R=301,L]
RewriteRule ^aelarion-leafheart-witches-of-sommar$ index.php?product=1036 [L]
RewriteRule ^p-1073-aelarion-leafheart-witches-of-sommar-kopia$ index.php?product=1073 [L]
RewriteRule ^anat-the-dance-of-steel-signum-workshop$ index.php?product=1179 [L]
RewriteRule ^anhur-the-dune-hunter-signum-workshop$ index.php?product=1200 [L]
RewriteRule ^archmage-munin-signum-workshop$ index.php?product=1284 [L]
RewriteRule ^ardashir-the-bloodsucker-executioner-signum-workshop$ index.php?product=1249 [L]
RewriteRule ^breloczek-dla-dziecka-batman$ index.php?product=1451 [L]
RewriteRule ^breloczek-dla-dziecka-gamepad$ index.php?product=957 [L]
RewriteRule ^breloczek-dla-dziecka-jednorozec$ index.php?product=975 [L]
RewriteRule ^breloczek-dla-dziecka-korona$ index.php?product=1310 [L]
RewriteRule ^breloczek-dla-dziecka-kotek$ index.php?product=970 [L]
RewriteRule ^breloczek-dla-dziecka-piesek$ index.php?product=969 [L]
RewriteRule ^breloczek-dla-dziecka-pilka$ index.php?product=971 [L]
RewriteRule ^breloczek-dla-dziecka-pszczolka$ index.php?product=974 [L]
RewriteRule ^breloczek-dla-dziecka-rakieta$ index.php?product=972 [L]
RewriteRule ^breloczek-dla-dziecka-rolka$ index.php?product=1463 [L]
RewriteRule ^breloczek-dla-dziecka-smok$ index.php?product=973 [L]
RewriteRule ^breloczek-dla-dziecka-spider-man$ index.php?product=1450 [L]
RewriteRule ^breloczek-dla-dziecka-super-dziewczyna$ index.php?product=1311 [L]
RewriteRule ^breloczek-do-kluczy-na-dzien-babci-kocham-cie-babciu$ index.php?product=966 [L]
RewriteRule ^breloczek-do-kluczy-na-dzien-babci-kwiaty$ index.php?product=967 [L]
RewriteRule ^breloczek-do-kluczy-na-dzien-babci-najlepsza-babcia-na-swiecie$ index.php?product=968 [L]
RewriteRule ^breloczek-do-kluczy-na-dzien-dziadka-kocham-cie-dziadku$ index.php?product=963 [L]
RewriteRule ^breloczek-do-kluczy-na-dzien-dziadka-najlepszy-dziadek-na-swiecie$ index.php?product=965 [L]
RewriteRule ^breloczek-do-kluczy-na-dzien-dziadka-wasy$ index.php?product=964 [L]
RewriteRule ^brelok-spotify-drewniany-z-twoja-piosenka$ index.php?product=1449 [L]
RewriteRule ^chevalier-de-batz-signum-workshop$ index.php?product=1130 [L]
RewriteRule ^commander-ajax-signum-workshop$ index.php?product=1151 [L]
RewriteRule ^daniel-vallors-hawk-signum-workshop$ index.php?product=1144 [L]
RewriteRule ^dragon-hunter-stlminiatures$ index.php?product=1299 [L]
RewriteRule ^drewniana-bombka-choinka$ index.php?product=1320 [L]
RewriteRule ^drewniana-bombka-choinka-3d$ index.php?product=1316 [L]
RewriteRule ^drewniana-bombka-choinka-z-prezentami$ index.php?product=1324 [L]
RewriteRule ^drewniana-bombka-choinki$ index.php?product=1325 [L]
RewriteRule ^drewniana-bombka-girlanda$ index.php?product=1323 [L]
RewriteRule ^drewniana-bombka-gwiazdka-3d$ index.php?product=1317 [L]
RewriteRule ^drewniana-bombka-mikolaj$ index.php?product=1322 [L]
RewriteRule ^drewniana-bombka-renifer$ index.php?product=1319 [L]
RewriteRule ^drewniana-bombka-renifer-3d$ index.php?product=1318 [L]
RewriteRule ^p-1321-drewniana-bombka-reniferek$ index.php?product=1321 [L]
RewriteRule ^drewniana-bombka-sniezynka$ index.php?product=1313 [L]
RewriteRule ^drewniana-bombka-3d-kotek$ index.php?product=1335 [L]
RewriteRule ^drewniana-bombka-kula-sniezna-3d-kroliczek$ index.php?product=1336 [L]
RewriteRule ^drewniana-bombka-kula-sniezna-3d-lisek$ index.php?product=1339 [L]
RewriteRule ^drewniana-bombka-kula-sniezna-3d-misiek$ index.php?product=1340 [L]
RewriteRule ^drewniana-bombka-kula-sniezna-3d-pingwinek$ index.php?product=1338 [L]
RewriteRule ^drewniana-bombka-kula-sniezna-3d-reniferek$ index.php?product=1337 [L]
RewriteRule ^drewniana-dekoracja-scienna-drzewo-zycia$ index.php?product=1447 [L]
RewriteRule ^drewniana-dekoracja-scienna-natura$ index.php?product=1444 [L]
RewriteRule ^drewniana-dekoracja-scienna-wilk$ index.php?product=1448 [L]
RewriteRule ^drewniana-karta-swiateczna-choinka$ index.php?product=1367 [L]
RewriteRule ^drewniana-karta-swiateczna-girlanda$ index.php?product=1369 [L]
RewriteRule ^drewniana-karta-swiateczna-mikolaj-z-saniami$ index.php?product=1368 [L]
RewriteRule ^drewniana-karta-swiateczna-renifer$ index.php?product=1366 [L]
RewriteRule ^drewniana-linijka-z-grawerem-dinozaury$ index.php?product=1466 [L]
RewriteRule ^drewniana-linijka-z-grawerem-minecraft$ index.php?product=1465 [L]
RewriteRule ^drewniana-linijka-z-grawerem-motylki$ index.php?product=1467 [L]
RewriteRule ^drewniana-linijka-z-grawerem-pokemon$ index.php?product=1464 [L]
RewriteRule ^drewniana-linijka-z-grawerem-super-chlopak$ index.php?product=1468 [L]
RewriteRule ^drewniana-linijka-z-grawerem-super-dziewczyna$ index.php?product=1469 [L]
RewriteRule ^drewniana-tabliczka-z-imieniem-na-chrzest-swiety$ index.php?product=1443 [L]
RewriteRule ^drewniana-tabliczka-modlitwa-aniele-bozy-strozu-moj-bobas$ index.php?product=929 [L]
RewriteRule ^drewniana-tabliczka-modlitwa-aniele-bozy-strozu-moj-dlonie$ index.php?product=926 [L]
RewriteRule ^drewniana-tabliczka-modlitwa-aniele-bozy-strozu-moj-galazka$ index.php?product=927 [L]
RewriteRule ^drewniana-tabliczka-modlitwa-aniele-bozy-strozu-moj-skrzydelka$ index.php?product=928 [L]
RewriteRule ^drewniana-tabliczka-na-dzien-babci-krzyzowka$ index.php?product=1455 [L]
RewriteRule ^drewniana-tabliczka-na-dzien-dziadka-krzyzowka$ index.php?product=1456 [L]
RewriteRule ^drewniana-tabliczka-z-imieniem-dziecka-kopia$ index.php?product=1453 [L]
RewriteRule ^p-1452-drewniana-tabliczka-z-imieniem-na-chrzest-swiety-kopia$ index.php?product=1452 [L]
RewriteRule ^drewniana-tabliczka-z-wlasnym-grawerem-okragla-15-cm$ index.php?product=1312 [L]
RewriteRule ^drewniana-zakladka-do-ksiazki-z-grawerem-jednorozec$ index.php?product=946 [L]
RewriteRule ^drewniana-zakladka-do-ksiazki-z-grawerem-kotek$ index.php?product=945 [L]
RewriteRule ^drewniana-zakladka-do-ksiazki-z-grawerem-krolik$ index.php?product=950 [L]
RewriteRule ^drewniana-zakladka-do-ksiazki-z-grawerem-ksiezyc$ index.php?product=951 [L]
RewriteRule ^p-952-drewniana-zakladka-do-ksiazki-z-grawerem-kwiaty$ index.php?product=952 [L]
RewriteRule ^drewniana-zakladka-do-ksiazki-z-grawerem-kwiaty-z-serduszkiem$ index.php?product=953 [L]
RewriteRule ^drewniana-zakladka-do-ksiazki-z-grawerem-lew$ index.php?product=947 [L]
RewriteRule ^drewniana-zakladka-do-ksiazki-z-grawerem-motyl$ index.php?product=955 [L]
RewriteRule ^p-949-drewniana-zakladka-do-ksiazki-z-grawerem-panda$ index.php?product=949 [L]
RewriteRule ^drewniana-zakladka-z-imieniem-piesek$ index.php?product=944 [L]
RewriteRule ^drewniana-zakladka-do-ksiazki-z-grawerem-smok$ index.php?product=948 [L]
RewriteRule ^drewniana-zakladka-do-ksiazki-z-grawerem-sowa$ index.php?product=954 [L]
RewriteRule ^drewniane-zaproszenie-na-chrzest-aniolek$ index.php?product=924 [L]
RewriteRule ^drewniane-zaproszenie-na-chrzest-galazka$ index.php?product=915 [L]
RewriteRule ^drewniane-zaproszenie-na-chrzest-golabek$ index.php?product=923 [L]
RewriteRule ^drewniane-zaproszenie-na-chrzest-kwiatek$ index.php?product=925 [L]
RewriteRule ^drewniany-magnes-na-dzien-babci-i-dziadka-kolko-z-kwiatuszkiem$ index.php?product=1438 [L]
RewriteRule ^drewniany-magnes-na-dzien-babci-i-dziadka-kolko-z-serduszkiem$ index.php?product=1439 [L]
RewriteRule ^drewniany-magnes-na-dzien-babci-i-dziadka-postacie$ index.php?product=1442 [L]
RewriteRule ^drewniany-magnes-na-dzien-babci-i-dziadka-serduszko-kocham-cie-babciu$ index.php?product=1441 [L]
RewriteRule ^drewniany-magnes-na-dzien-babci-i-dziadka-serduszko-kocham-cie-dziadku$ index.php?product=1440 [L]
RewriteRule ^drewniany-wianek-bozonarodzeniowy-dzwonek$ index.php?product=1437 [L]
RewriteRule ^drewniany-wianek-bozonarodzeniowy-kokardka$ index.php?product=1436 [L]
RewriteRule ^drewniany-wieszak-z-grawerem-golabki$ index.php?product=1458 [L]
RewriteRule ^drewniany-wieszak-z-grawerem-kotek$ index.php?product=1459 [L]
RewriteRule ^drewniany-wieszak-z-grawerem-misiek$ index.php?product=1461 [L]
RewriteRule ^drewniany-wieszak-z-grawerem-serduszka$ index.php?product=1462 [L]
RewriteRule ^drewniany-wieszak-z-grawerem-skrzydelka$ index.php?product=1363 [L]
RewriteRule ^drewniany-wieszak-z-grawerem-skrzydelka$ index.php?product=1454 [L]
RewriteRule ^drewniany-wieszak-z-grawerem-skrzydelka-aniolka$ index.php?product=1457 [L]
RewriteRule ^drewniany-wieszak-z-grawerem-stopki$ index.php?product=1460 [L]
RewriteRule ^ezekiel-deeproots-witches-of-sommar$ index.php?product=1095 [L]
RewriteRule ^forest-signum-workshop$ index.php?product=1263 [L]
RewriteRule ^girlanda-drewniana-kwiaty$ index.php?product=1506 [L]
RewriteRule ^girlanda-drewniana-safari$ index.php?product=1505 [L]
RewriteRule ^girlanda-drewniana-trojkaty$ index.php?product=1507 [L]
RewriteRule ^gra-drewniana-pamieciowa-memory-emoji$ index.php?product=903 [L]
RewriteRule ^gra-drewniana-pamieciowa-memory-owoce$ index.php?product=902 [L]
RewriteRule ^gra-drewniana-pamieciowa-memory-zwierzeta$ index.php?product=901 [L]
RewriteRule ^grawerowana-rakieta-na-dzien-chlopaka$ index.php?product=1306 [L]
RewriteRule ^grawerowana-rakieta-na-dzien-chlopaka-wzor-2$ index.php?product=1307 [L]
RewriteRule ^grawerowana-rakieta-na-dzien-chlopaka-wzor-3$ index.php?product=1308 [L]
RewriteRule ^grawerowana-rakieta-na-dzien-chlopaka-wzor-4$ index.php?product=1309 [L]
RewriteRule ^guard-construct-of-kadbrant-fortress-signum-workshop$ index.php?product=1291 [L]
RewriteRule ^p-1298-guard-construct-of-kadbrant-fortress-signum-workshop-kopia$ index.php?product=1298 [L]
RewriteRule ^heda-sorceress-of-the-desert-signum-workshop$ index.php?product=1228 [L]
RewriteRule ^herrick-burned-dogs-17th-infantry-regiment-signum-workshop$ index.php?product=1116 [L]
RewriteRule ^immortal-with-a-spear-signum-workshop$ index.php?product=1207 [L]
RewriteRule ^immortal-with-a-sword-signum-workshop$ index.php?product=1186 [L]
RewriteRule ^jajko-wielkanocne-krolik-z-pisankami$ index.php?product=896 [L]
RewriteRule ^jajko-wielkanocne-3d-kroliczek$ index.php?product=886 [L]
RewriteRule ^jajko-wielkanocne-3d-kroliczki$ index.php?product=888 [L]
RewriteRule ^jajko-wielkanocne-3d-krolik-uszy$ index.php?product=897 [L]
RewriteRule ^jajko-wielkanocne-3d-krolik-z-motylkiem$ index.php?product=895 [L]
RewriteRule ^jajko-wielkanocne-3d-kurczaczek$ index.php?product=887 [L]
RewriteRule ^p-894-jajko-wielkanocne-3d-w-skorupce$ index.php?product=894 [L]
RewriteRule ^liobrenda-the-temple-novice-signum-workshop$ index.php?product=1137 [L]
RewriteRule ^magical-spire-signum-workshop$ index.php?product=1277 [L]
RewriteRule ^magnes-podziekowanie-dla-gosci-na-chrzest-aniolek$ index.php?product=1365 [L]
RewriteRule ^magnes-podziekowanie-dla-gosci-na-chrzest-kolko-golebie$ index.php?product=893 [L]
RewriteRule ^podziekowania-dla-gosci-serce$ index.php?product=892 [L]
RewriteRule ^magnes-podziekowanie-dla-gosci-na-chrzest-stopa$ index.php?product=1364 [L]
RewriteRule ^magnes-z-data-urodzenia-jednorozec$ index.php?product=941 [L]
RewriteRule ^magnes-z-data-urodzenia-kotek$ index.php?product=940 [L]
RewriteRule ^magnes-z-data-urodzenia-lew$ index.php?product=936 [L]
RewriteRule ^magnes-z-data-urodzenia-lisek$ index.php?product=939 [L]
RewriteRule ^magnes-z-data-urodzenia-slonik$ index.php?product=938 [L]
RewriteRule ^magnes-z-data-urodzenia-zyrafka$ index.php?product=937 [L]
RewriteRule ^metryczka-drewniana-chmurka$ index.php?product=1502 [L]
RewriteRule ^metryczka-drewniana-jednorozec$ index.php?product=976 [L]
RewriteRule ^metryczka-drewniana-jednorozec-glowa$ index.php?product=983 [L]
RewriteRule ^metryczka-drewniana-kotek-na-ksiezycu$ index.php?product=979 [L]
RewriteRule ^metryczka-drewniana-lew$ index.php?product=977 [L]
RewriteRule ^metryczka-drewniana-lisek$ index.php?product=978 [L]
RewriteRule ^metryczka-drewniana-safari$ index.php?product=980 [L]
RewriteRule ^metryczka-drewniana-sowa$ index.php?product=981 [L]
RewriteRule ^metryczka-drewniana-sowy$ index.php?product=982 [L]
RewriteRule ^morvina-mirewood-the-baba-yaga-witches-of-sommar$ index.php?product=1109 [L]
RewriteRule ^podkladka-pod-kubek-dla-babci-galazka$ index.php?product=961 [L]
RewriteRule ^podkladka-pod-kubek-dla-babci-kwiaty$ index.php?product=956 [L]
RewriteRule ^podkladka-pod-kubek-dla-babci-najlepsza-babcia$ index.php?product=960 [L]
RewriteRule ^p-958-podkladka-pod-kubek-dla-dziadka-kwiaty$ index.php?product=958 [L]
RewriteRule ^podkladka-pod-kubek-dla-dziadka-najlepszy-dziadek$ index.php?product=959 [L]
RewriteRule ^podkladka-pod-kubek-dla-dziadka-wasy$ index.php?product=962 [L]
RewriteRule ^prosba-o-bycie-matka-chrzestna-aniolek$ index.php?product=917 [L]
RewriteRule ^prosba-o-bycie-matka-chrzestna-misiek$ index.php?product=918 [L]
RewriteRule ^prosba-o-bycie-matka-chrzestna-serce$ index.php?product=904 [L]
RewriteRule ^prosba-o-bycie-matka-chrzestna-serduszko$ index.php?product=898 [L]
RewriteRule ^prosba-o-bycie-matka-chrzestna-puzzle$ index.php?product=935 [L]
RewriteRule ^prosba-o-bycie-matka-chrzestna-puzzle-serce$ index.php?product=934 [L]
RewriteRule ^prosba-o-bycie-matka-chrzestna-puzzle-3d$ index.php?product=1503 [L]
RewriteRule ^prosba-o-bycie-ojcem-chrzestnym-aniolek$ index.php?product=931 [L]
RewriteRule ^prosba-o-bycie-ojcem-chrzestnym-misiek$ index.php?product=930 [L]
RewriteRule ^prosba-o-bycie-ojcem-chrzestnym-serce$ index.php?product=905 [L]
RewriteRule ^prosba-o-bycie-ojcem-chrzestnym-serduszko$ index.php?product=899 [L]
RewriteRule ^prosba-o-bycie-ojcem-chrzestnym-puzzle$ index.php?product=933 [L]
RewriteRule ^p-932-prosba-o-bycie-ojcem-chrzestnym-puzzle-serce$ index.php?product=932 [L]
RewriteRule ^prosba-o-bycie-ojcem-chrzestnym-puzzle-3d$ index.php?product=1504 [L]
RewriteRule ^prosba-o-zostanie-matka-chrzestna$ index.php?product=942 [L]
RewriteRule ^prosba-o-zostanie-ojcem-chrzestnym$ index.php?product=943 [L]
RewriteRule ^quibble-tinkerton-witches-of-sommar$ index.php?product=1088 [L]
RewriteRule ^ratushtar-the-roar-of-death-signum-workshop$ index.php?product=1242 [L]
RewriteRule ^reez-the-xii-th-arcana-signum-workshop$ index.php?product=1165 [L]
RewriteRule ^riana-the-weapons-collector-signum-workshop$ index.php?product=1158 [L]
RewriteRule ^rocks-signum-workshop$ index.php?product=1270 [L]
RewriteRule ^p-1256-roland-the-proud-signum-workshop$ index.php?product=1256 [L]
RewriteRule ^rufus-the-young-squire-signum-workshop$ index.php?product=1172 [L]
RewriteRule ^sergeant-bron-signum-workshop$ index.php?product=1123 [L]
RewriteRule ^sin-sunset-rider-signum-workshop$ index.php?product=1193 [L]
RewriteRule ^swamp-ghoul-witches-of-sommar$ index.php?product=1102 [L]
RewriteRule ^swamp-zombie-enemy-witches-of-sommar$ index.php?product=989 [L]
RewriteRule ^sylvana-dryad-centaur-witches-of-sommar$ index.php?product=1080 [L]
RewriteRule ^p-1087-sylvana-dryad-centaur-witches-of-sommar-kopia$ index.php?product=1087 [L]
RewriteRule ^tabliczka-metryczka$ index.php?product=882 [L]
RewriteRule ^drewniana-tabliczka-modlitwa-aniele-bozy-strozu-moj-chmurka$ index.php?product=1484 [L]
RewriteRule ^tabliczka-serduszko-z-imieniem-dziecka$ index.php?product=1501 [L]
RewriteRule ^tabliczka-serduszko-z-napisem-i-love-you-to-the-moon-and-back$ index.php?product=1478 [L]
RewriteRule ^tabliczka-serduszko-z-napisem-nasza-milosc$ index.php?product=1481 [L]
RewriteRule ^tabliczka-serduszko-z-napisem-you-are-so-loved$ index.php?product=1472 [L]
RewriteRule ^drewniana-tabliczka-z-imieniem-dziecka$ index.php?product=881 [L]
RewriteRule ^tabliczka-z-napisem-czekamy-na-ciebie$ index.php?product=890 [L]
RewriteRule ^tabliczka-z-napisem-moja-pierwsza-gwiazdka$ index.php?product=891 [L]
RewriteRule ^drewniana-tabliczka-z-napisem-moj-pierwszy-kroczek$ index.php?product=885 [L]
RewriteRule ^drewniana-tabliczka-z-napisem-mowie-mama$ index.php?product=880 [L]
RewriteRule ^drewniana-tabliczka-z-napisem-mowie-tata$ index.php?product=879 [L]
RewriteRule ^drewniana-tabliczka-z-napisem-witaj-na-swiecie$ index.php?product=884 [L]
RewriteRule ^drewniane-tabliczki-do-sesji-ciazowej-galazka$ index.php?product=900 [L]
RewriteRule ^tabliczki-z-miesiacami-dinozaury$ index.php?product=985 [L]
RewriteRule ^tabliczki-z-miesiacami-kolorowy-swiat$ index.php?product=889 [L]
RewriteRule ^tabliczki-z-miesiacami-kwiatki$ index.php?product=984 [L]
RewriteRule ^tabliczki-z-miesiacami-misie$ index.php?product=986 [L]
RewriteRule ^tabliczki-z-miesiacami-oktagon-kwiaty-3d$ index.php?product=914 [L]
RewriteRule ^tabliczki-z-miesiacami-serduszko$ index.php?product=1473 [L]
RewriteRule ^drewniane-tabliczki-z-miesiacami-do-zdjec-galazka$ index.php?product=878 [L]
RewriteRule ^drewniane-tabliczki-z-miesiacami-do-zdjec-kwiaty$ index.php?product=876 [L]
RewriteRule ^drewniane-tabliczki-z-miesiacami-do-zdjec-serduszko$ index.php?product=877 [L]
RewriteRule ^drewniane-tabliczki-z-miesiacami-do-zdjec-dziecka-oktagon-kwiaty$ index.php?product=883 [L]
RewriteRule ^varif-the-mighty-rakshasa-signum-workshop$ index.php?product=1235 [L]
RewriteRule ^veteran-of-the-caliphate-signum-workshop$ index.php?product=1221 [L]
RewriteRule ^warrior-of-the-caliphate-signum-workshop$ index.php?product=1214 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-biala$ index.php?product=1356 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-biala-zielona$ index.php?product=1360 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-niebieska-biala$ index.php?product=1362 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-niebieska-czarna$ index.php?product=1354 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-niebieska-czerwona$ index.php?product=1358 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-niebieska-szara$ index.php?product=1352 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-niebieska-zolta$ index.php?product=1315 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-rozowa-czerwona$ index.php?product=1331 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-rozowa-fioletowa$ index.php?product=1346 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-rozowa-szara$ index.php?product=1334 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-rozowa-zielona$ index.php?product=1348 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-szara-biala$ index.php?product=1329 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-zielona-biala$ index.php?product=1350 [L]
RewriteRule ^zawieszka-przypinka-do-smoczka-zolta-rozowa$ index.php?product=1327 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-biala$ index.php?product=1355 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-biala-zielona$ index.php?product=1359 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-niebieska-biala$ index.php?product=1361 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-niebieska-czarna$ index.php?product=1353 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-niebieska-czerwona$ index.php?product=1357 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-niebieska-szara$ index.php?product=1351 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-niebieska-zolta$ index.php?product=1314 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-rozowa-czerwona$ index.php?product=1330 [L]
RewriteRule ^p-1332-zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-rozowa-czerwona-kopia$ index.php?product=1332 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-rozowa-fioletowa$ index.php?product=1345 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-rozowa-szara$ index.php?product=1333 [L]
RewriteRule ^p-1347-zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-rozowa-zielona$ index.php?product=1347 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-szara-biala$ index.php?product=1328 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-zielona-biala$ index.php?product=1349 [L]
RewriteRule ^zawieszka-przypinka-z-agrafka-i-czerwona-kokardka-zolta-rozowa$ index.php?product=1326 [L]
RewriteCond %{REQUEST_URI} ^/home$
RewriteRule ^(.*)$ http://www.pomysloweprezenty.pl/ [R=permanent,L]
RewriteCond %{REQUEST_URI} ^/home-1$
RewriteRule ^(.*)$ http://www.pomysloweprezenty.pl/ [R=permanent,L]
RewriteRule ^$ index.php?a=page&id=121&lang=pl [L]
RewriteRule ^home$ index.php?a=page&id=121&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^home/([0-9]+)$ index.php?a=page&id=121&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^home/1$ home [R=301,L]
RewriteRule ^regulamin$ index.php?a=page&id=122&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^regulamin/([0-9]+)$ index.php?a=page&id=122&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^regulamin/1$ regulamin [R=301,L]
RewriteRule ^dostawa$ index.php?a=page&id=123&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^dostawa/([0-9]+)$ index.php?a=page&id=123&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^dostawa/1$ dostawa [R=301,L]
RewriteRule ^formy-platnosci$ index.php?a=page&id=124&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^formy-platnosci/([0-9]+)$ index.php?a=page&id=124&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^formy-platnosci/1$ formy-platnosci [R=301,L]
RewriteRule ^zwroty-i-reklamacje$ index.php?a=page&id=125&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^zwroty-i-reklamacje/([0-9]+)$ index.php?a=page&id=125&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^zwroty-i-reklamacje/1$ zwroty-i-reklamacje [R=301,L]
RewriteRule ^kontakt$ index.php?a=page&id=126&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^kontakt/([0-9]+)$ index.php?a=page&id=126&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^kontakt/1$ kontakt [R=301,L]
RewriteRule ^blog$ index.php?a=page&id=173&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^blog/([0-9]+)$ index.php?a=page&id=173&lang=pl&bs=$1&%{QUERY_STRING} [L]
RewriteRule ^blog/1$ blog [R=301,L]
RewriteRule ^tradycje-swiat-bozego-narodzenia-w-polsce$ index.php?article=23&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^swiateczne-zyczenia-bozonarodzeniowe$ index.php?article=24&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^dzien-pluszowego-misia-co-to-za-swieto-kiedy-wypada-i-jaka-jest-jego-historia$ index.php?article=25&lang=pl&%{QUERY_STRING} [L]
RewriteRule ^najlepsze-zyczenia-na-dzien-babci-i-dziadka$ index.php?article=26&lang=pl&%{QUERY_STRING} [L]