M
M
Mikhail Gilmutdinov2016-04-25 17:22:11
htaccess
Mikhail Gilmutdinov, 2016-04-25 17:22:11

How to make a redirect from the entire section to a new section?

How to make a redirect from the entire section, for example site.ru/catalog/plyazh/...
to redirect site.ru/plyazh/... .
inside there is also a structure of sections and pages.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Viktor Taran, 2016-04-26
@shambler81

Redirects all contents of the directories http://site.ru/dir1/any/any → to site.ru dir2 /any/any .

RewriteCond %{REQUEST_URI} ^/dir1/(.*)$ 
# если строка начинается с /dir1/ 
RewriteRule ^(.*)$ /dir1%1 [R=301,L]

#Redirect all urls starting with dir1 to dir2 preserving further URL structure
Redirects all contents of /any/dir1/any/any → to /any/dir2/any/any
RewriteCond %{REQUEST_URI} ^(.*)/dir1/(.*)$ 
# если строка содержит /dir1/ 
RewriteRule ^(.*)$ %1/dir2/%2 [R=301,L]

#Redirect all urls starting with dir1 to dir2 preserving further URL structure

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question