Forum Moderators: phranque
RewriteEngine On
RewriteBase /
# pointing for the domain abc.com to folder abc
ReWriteCond %{HTTP_HOST} abc.com
ReWriteCond %{REQUEST_URI} !abc/
ReWriteRule ^(.*)$ abc/$1 [L]
# pointing for the domain 123.com to folder 123
ReWriteCond %{HTTP_HOST} 123.com
ReWriteCond %{REQUEST_URI} !123/
ReWriteRule ^(.*)$ 123/$1 [L]
RewriteEngine On
RewriteBase /
# pointing for the domain abc.com to folder abc
ReWriteCond %{HTTP_HOST} abc.com
ReWriteCond %{REQUEST_URI} !abc/
ReWriteRule ^(.*)$ abc/$1 [L]
# pointing for the domain 123.com to folder 123
ReWriteCond %{HTTP_HOST} 123.com
ReWriteCond %{REQUEST_URI} !123/
ReWriteRule ^(.*)$ 123/$1 [L]