View Single Post
Old 10-09-2012, 05:17 PM   PM User | #1
ben1390
New Coder

 
Join Date: Nov 2009
Posts: 58
Thanks: 15
Thanked 0 Times in 0 Posts
ben1390 is an unknown quantity at this point
.htaccess redirect a folder within a folder

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?
ben1390 is offline   Reply With Quote