Redirect Code Needed.
-
Hi,
Please help me redirect the following pages in htaccess.
https://www.mydomain.com/FolderA/FolderB/number-of-pages.html to
**https://www.mydomain.com/FolderA/FolderC/FolderB/number-of-pages.html **
I want to redirect atleast 50 pages like this.
Please help
Thanks
-
Hi Kashif,
Following this structure should get it done.
RewriteRule ^subdirectory/(.*)$ /anotherdirectory/$1 [R=301,NC,L]
For your example it would be like
RewriteRule ^FolderA/FolderB/(.*)$ /FolderA/FolderC/FolderB/$1 [R=301,NC,L]
For less then 100 redirects it "may" also be prudent to do them individually. I say this because it makes it very obvious what is going on if you ever need to edit it again. I would use Excel or OpenOffice to create a spreadsheet then just concatenate the cells together, following this example;
Redirect 301 /path/to-old-url https://www.mydomain.com/path/to-new-url
Ref site: http://coolestguidesontheplanet.com/redirecting-a-web-folder-directory-to-another-in-htaccess/
Hope this helps,
Don