Answer the question
In order to leave comments, you need to log in
How to redirect a section from one site to another?
I found a question on Habré , but htaccess stubbornly refuses to do a redirect.
The task is this, there is a site https://site.ru/test/test2
It is
necessary to redirect /test/ to /test3/ to https://newsite.ru/test3 , but so that all /test/ subsections and product cards open along a new path, i.e. https://newsite.ru/test3/test2
Answer the question
In order to leave comments, you need to log in
RewriteRule ^test/(.+)$ /test3/$1 [R=301,L]
Where .+
any number of characters from 1 or more
A is ()
a group (simple grouping)
and, accordingly, $1
this is the same 1 group that was created, so everything in it will be thrown
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question