RewriteEngine on RewriteBase / RewriteRule cat/([0-9]+).html index.php?id=$1&act=cat [L] RewriteRule goods/([0-9]+).html index.php?id=$1&act=goods [L] RewriteRule (.+) /index.php #уходит в цикл =) подскажите правило которое бы редиректило остальные варианты на index.php
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule . index.php [L,QSA]