Mr Lucky
Well-known member
I want to redirect from one URL another (inside a subdirectory), keeping the file system the same except for the home page which redirects to the new homepage
So for example
oldURL/oldpage1 > newURL/folder/oldpage1
oldURL/oldpage2 > newURL/folder/oldpage2
oldURL/oldpage3 > newURL/folder/oldpage3
oldURL/ > newURL/
The first bit seems easy with htaccess:
But also redirects the old homepage into the folder instead of to the root.
Can anyone help please?
So for example
oldURL/oldpage1 > newURL/folder/oldpage1
oldURL/oldpage2 > newURL/folder/oldpage2
oldURL/oldpage3 > newURL/folder/oldpage3
oldURL/ > newURL/
The first bit seems easy with htaccess:
Code:
RewriteEngine on
RewriteRule ^(.*)$ http://newURL/folder/$1 [R=301,L]
But also redirects the old homepage into the folder instead of to the root.
Can anyone help please?