In the .htaccess file I try to redirect from URLs like http://site.ru/?amp;id=ХХ&catid=XX to the main page, i.e. on http://site.ru/ , but it does not work. I tried this:
RewriteEngine On RewriteCond %{QUERY_STRING} ^amp;id=(\d+)&catid=(\d+)$ [NC] RewriteRule ^/$ http://site.ru/ [R=301,L]
RewriteRule ^ http://site.ru/ [R=301,L]And if only empty uri, thenRewriteRule ^$ http://site.ru/ [R=301,L]- splash58