View Single Post
  #2 (permalink)  
Old 09-03-2007, 17:50
swexpert swexpert is offline
Premium Member
 
Join Date: Jan 2007
Posts: 209
Default

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.
Reply With Quote