10 lines
240 B
ApacheConf
10 lines
240 B
ApacheConf
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]
|