Use .htaccess to configure subdomains serve content from folders rather than from the root domain
Use .htaccess to configure subdomains serve content from folders rather than from the root domain - .htaccess files are extremely useful in many cases for users who either do not have root permissions or for users who simply aren't comfortable in making changes in their web server's configuration file. Trying to debug .htaccess not working isn't always the easiest thing to do, however, hopefully by checking the discuss below mentioned about htaccess, subdomain, multiple-domains, , .htaccess common problems as well as the troubleshooting tips, you'll have a better grasp on what you may have to modify to get your .htaccess file running smoothly. Problem : Here is site http://www.glassnow.com.au/ With 3 subdomains: brisbane.glassnow.com.au goldcoast.glassnow.com.au sunshinecoast.glassnow.com.au Here is htaccess RewriteEngine On RewriteBase / RewriteCond %HTTP_HOST ^www.glassnow.com.au RewriteRule ^brisbane/(.*)$ http://brisbane.glassnow.com.au/$1 [L...