Hey guys, I just finished re-designing my whole site. I used to have subdomains for subsections of my site and I want to do away with that and go to directories. I used to have: 1) subdomain.whatever.com 2) subdomain.whatever.com/index.php?section=somepage Now I want to have it redirected 1) www.whatever.com/some_new_folder_name 2) www.whatever.com/some_new_folder_name/page_name.htm This is what I have - Im really stuck when it comes to (2): Code: Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^hosting.osirion.co.za [NC] RewriteRule ^(.*)$ http://www.osirion.co.za/web_hosting/ [L,R=301] Please help! You can also suggest how to fix the above if its un-optimal/wrong :P THANKS!