Вобщем конструкция выглядит так :
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^http://www.***.com/.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://www.perfect***.com/.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://www.***sex.com/.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://www.***it.com/.*$ [NC]
RewriteRule /*
http://www.google.com/ [R,L]
RewriteCond %{HTTP:Accept-Language} (ru) [NC]
RewriteCond %{REQUEST_URI} !^cj_out.php [NC]
RewriteRule .* cj_out.php [R,L]
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} ^RU$
RewriteCond %{REQUEST_URI} !^cj_out.php [NC]
RewriteRule .* cj_out.php [R,L]
RewriteCond %{HTTP:Accept-Language} (cn) [NC]
RewriteCond %{REQUEST_URI} !^cj_out.php [NC]
RewriteRule .* cj_out.php [R,L]
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} ^CN$
RewriteCond %{REQUEST_URI} !^cj_out.php [NC]
RewriteRule .* cj_out.php [R,L]
Почему то эта конструкция зацикливается
что не так ?
В чем ошибка ?