I need to add redirect from page http://www.mysite.ru/news/?PAGEN_1=1 to http://www.mysite.ru/news/, so I added in .htaccess file code below
RewriteCond %{QUERY_STRING} ^PAGEN_1=1 [NC]
RewriteRule ^news/$ http://www.mysite.ru/news/ [R=301,L]
but I get error "ERR_TOO_MANY_REDIRECTS". What's wrong and how to fix it?