Create an .htaccess file on the public_html folder and add:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.[^.]+\.maindomain\.com$
RewriteRule ^(.+) %{HTTP_HOST}$1 [C]
RewriteRule ^www\.([^.]+)\.maindomain\.com(.*) /myfolder$1$2
That should do. replace the values with your actual values. Mark had posted this htaccess URL once on these forums,
check it out: http:// cooletips.de/htaccess/index.php
Regds
IJ
Last edited by swexpert; 09-03-2007 at 17:53.
|