С этими редиректами разоабрался.
[CODE]Redirect 301 /catalog/Joy/joy_em_6_1t/ /catalog/Joy/joy_em_1x1t/[/CODE]
нужно так.
[CODE]if ($uri ~ "/catalog/Joy/joy_em_6_1t/") {
rewrite /catalog/Joy/joy_em_6_1t/ /catalog/Joy/joy_em_1x1t/ permanent;
}[/CODE]
А вот как решить проблему редиректов таких?
[CODE]RewriteCond %{THE_REQUEST} /(.*)index.php.*$
RewriteCond %{QUERY_STRING} ^\z
RewriteRule ^(.*)index\.php$ http://%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{THE_REQUEST} /(.*)index.html.*$
RewriteRule .* /%1 [R=301,L][/CODE]
[CODE]Redirect 301 /catalog/Joy/joy_em_6_1t/ /catalog/Joy/joy_em_1x1t/[/CODE]
нужно так.
[CODE]if ($uri ~ "/catalog/Joy/joy_em_6_1t/") {
rewrite /catalog/Joy/joy_em_6_1t/ /catalog/Joy/joy_em_1x1t/ permanent;
}[/CODE]
А вот как решить проблему редиректов таких?
[CODE]RewriteCond %{THE_REQUEST} /(.*)index.php.*$
RewriteCond %{QUERY_STRING} ^\z
RewriteRule ^(.*)index\.php$ http://%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{THE_REQUEST} /(.*)index.html.*$
RewriteRule .* /%1 [R=301,L][/CODE]