I read your jms2win_UsersManual_V120.pdf and it says...
Suppose you have a master website with the domain “
www.master.com”
physically installed in the directory ‘/public_html/master’ and that you have
defined ‘slave 1’ with the domain “
www.slave1.com”.
This means that you have to setup your environment to declare the
“
www.slave1.com” that it is mapped to the same directory than the master
‘/public_html/master’.
The expected result is :
Website Domain Folder path
Master
www.master.com /public_html/master
Slave1
www.slave1.com /public_html/master
3.2.4 How to configure httpd.conf with apache
In apache, you can configure the “httpd.conf” file to declare multiple
virtualhost entries pointing to the same directory.
<VirtualHost *>
ServerName domain_01.com
ServerAlias *. domain_01.com
DocumentRoot /var/www/html/php/MultiSites
User apache
Group apache
</VirtualHost>
<VirtualHost *>
ServerName domain_02.com
ServerAlias *. domain_02.com
DocumentRoot /var/www/html/php/MultiSites
User apache
Group apache
</VirtualHost>