Answer the question
In order to leave comments, you need to log in
How to make a 301 redirect from old pages to new ones (only the names of the directories differ)?
Good afternoon,
tell me, please, how to make a 301 redirect in the .htaccess file from the old pages of the site to the new ones. All file names are identical (digital, from one to eight digits), only the directory differs. For example:
old page
https://site.ru/old/123456
new page
https://site.ru/new/123456
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?site\.ru [NC]
RewriteCond %{REQUEST_URI} ^/old/123456 [NC]
RewriteRule ^(.*)$ https://site.ru/new/123456 [R=301,L]
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question