Answer the question
In order to leave comments, you need to log in
How to write a 301 redirect for a product category in .htaccess?
There is a website site.ru and it has the following structure https://site.ru/katalog/categoriya/podcategoriya/tovar
A redirect was made from the link:
https://site.ru/katalog/categoriya/podcategoriya1/
to
https:// site.ru/katalog/categoriya/podcategoriya2/
.htaccess has the following parameters:
RewriteCond %{REQUEST_URI} ^/katalog/categoriya/podcategoriya1/
RewriteRule ^.*$ https://site.ru/katalog/categoriya/podcategoriya2/ [R=301,L]
Answer the question
In order to leave comments, you need to log in
RewriteCond %{REQUEST_URI} ^/katalog/categoriya/podcategoriya1/
RewriteRule ^.*$ https://site.ru/katalog/categoriya/podcategoriya2/ [R=301,L]
RewriteCond %{REQUEST_URI} ^/katalog/categoriya/podcategoriya1/(.*)
RewriteRule ^.*$ https://site.ru/katalog/categoriya/podcategoriya2/%1 [R=301,L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question