View Single Post
Old 12-07-2011, 01:44 AM   PM User | #3
Inigoesdr
Super Moderator


 
Inigoesdr's Avatar
 
Join Date: Mar 2007
Location: Florida, USA
Posts: 3,601
Thanks: 2
Thanked 397 Times in 390 Posts
Inigoesdr is a jewel in the roughInigoesdr is a jewel in the roughInigoesdr is a jewel in the rough
Try something like this:
Code:
# Ensure the URL ends with a trailing slash
RewriteRule ^directory$ http://www.domain.com/directory/ [R=301,L]

# Rewrite the URL to grab the contents from the websites directory
RewriteRule ^directory/(.*)$ /websites/directory/$1 [L]

# Redirect /website directories
RewriteRule ^websites/(.*)$ http://www.domain.com/$1/ [R=301,L]
Not tested.
Inigoesdr is offline   Reply With Quote