Hi All,
I have a folder within a folder that needs redirecting, for example:
http://www.domain.com/directory/folder1 which needs re-directing to
http://www.domain.com/directory/folder2 and have been using the following code:
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*)/folder1/(.*)$ $1/folder2/$2 [R,L]
However this is re-directing to
http://www.domain.com/var/www/vhosts...ctory/folder2/
Any ideas how to fix this?