Go Back   CodingForums.com > :: Server side development > Apache configuration

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
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
Old 10-14-2012, 06:53 PM   PM User | #2
patryk
Regular Coder

 
patryk's Avatar
 
Join Date: Oct 2012
Location: /dev/couch
Posts: 395
Thanks: 2
Thanked 64 Times in 64 Posts
patryk is on a distinguished road
people love rewrite these days...

if you want redirect http://example.com/testdir/dir1/ to http://example.com/testdir/dir2/
you put yhis in .htaccess :
Code:
Redirect 301 /testdir/dir1/ /testdir/dir2/
Rewrite is for rewriting
Redirect for redirecting

Last edited by patryk; 10-14-2012 at 06:57 PM..
patryk is offline   Reply With Quote
Users who have thanked patryk for this post:
ben1390 (10-15-2012)
Old 10-15-2012, 12:27 PM   PM User | #3
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
Hi patryk

Thanks for that, much appreciated and I always get my rewrites and redirects confused
ben1390 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:56 AM.


Advertisement
Log in to turn off these ads.