I have created subfolders for my subdomain, like system.example.com inside of www.example.com Folder Structure /var/www/web1/web/www - www.example.com Document Root /var/www/web1/web/system - system.example.com Document Root I have added system.example.com as a codomain, so that is done. I have also found this code that will work with the subdomain ************************ RewriteEngine On RewriteCond %{REQUEST_URI} !^//(.*)?$ RewriteCond %{HTTP_HOST} ^(www\.)?([^.]+)\.example\.com$ [NC] RewriteRule ^(.*)$ //%2/$1 [QSA,L] **************************** This is posted in my Apache Directives section. The problem is that this seems to break my ability to go to: www.example.com/~web1_joesmith I am also trying to use the alias to allow people to go to www.example.com/~joesmith I found this code ******************************* AliasMatch ^/~joesmith(/(.*))? /var/www/web1/user/web1_joesmith/web/$1 ******************************* to do this. This is also posted in the Apache Directives. The code will work, but not when the subdomains are setup using the Rewrite code above. Any help that someone could give would be greatly appreciated. Thank you. Michael