Berikut adalah cara setting virtual host web server apache pada XAMPP :
1. Buka file host pada : WINDOWS/system32/drivers/etc/hosts
2. Tambahkan file hosts tambahin IP dan nama doamin :
127.0.0.1 localhost
127.0.0.1 www.website1.com
127.0.0.2 www.website2.com
3. Kemudian buka file : httpd-vhosts.conf pada path: apache/conf/extra/httpd-vhosts.conf
4. Tambahkan script :
<VirtualHost 127.0.0.1:80>
ServerAdmin info@website1.com
DocumentRoot /xampp/htdocs/website
ServerName website1.com
</VirtualHost>
<VirtualHost 127.0.0.2:80>
ServerAdmin info@website2.com
DocumentRoot /xampp/htdocs/website2
ServerName website2.com
</VirtualHost>
5. Matikan / restart web server (apache)
6. Untuk mencoba buka browser lalu ketikkan :
http://www.website1.com dan http://www.webiste2.com