Два варианта решения:
1) Использовать
RewriteRule, а не
Redirect 301.
Пример:
Код:
Redirect 301 /collection/portfeli/product/portfel-muzhskoy-ot-tony-perotti3310241 http://www.gentsfashion.ru/portfeli/38759565-portfel-muzhskoy-ot-tony-perotti3310241.html
заменить на:
Код:
RewriteRule ^collection/portfeli/product/portfel-muzhskoy-ot-tony-perotti3310241$ http://www.gentsfashion.ru/portfeli/38759565-portfel-muzhskoy-ot-tony-perotti3310241.html [R=301,L]
и так далее для всех ссылок!
2) Оставить
Redirect 301 как есть, но изменить порядок для правил.
Пример (в приложенном файле .htaccess):
Код:
Redirect 301 /collection/portfeli http://www.gentsfashion.ru/26-portfeli-muzhskie
...
Redirect 301 /collection/portfeli/product/portfel-muzhskoy-ot-tony-perotti3310241 http://www.gentsfashion.ru/portfeli/38759565-portfel-muzhskoy-ot-tony-perotti3310241.html
заменить на:
Код:
Redirect 301 /collection/portfeli/product/portfel-muzhskoy-ot-tony-perotti3310241 http://www.gentsfashion.ru/portfeli/38759565-portfel-muzhskoy-ot-tony-perotti3310241.html
...
Redirect 301 /collection/portfeli http://www.gentsfashion.ru/26-portfeli-muzhskie
Изменить порядок для правил (правила для общего каталога располагать после всех доп. правил относящихся к данному каталогу)