Was reading some stuff on 301 redirects, so I made a script that gets rid of the www from subdomain, and redirects anyone going to mydomain/forums, to the subdomain forums.mydomain.com. Options All -Indexes RewriteEngine on RewriteCond %{HTTP_HOST} ^(www\.)?exophase\.com [NC] RewriteCond %{THE_REQUEST} ^[A-Z]+\ /forums/ RewriteRule ^forums/(.*) http://forums.exophase.com/$1 [R=301,L] Code (markup): and then the .htaccess in subdomain directory (this is on a cpanel account) Options All -Indexes Redirect 301 /forums/ http://forums.exophase.com/ Code (markup): If there are any problems with this or how I can make it better let me know.