/* Virtual Hosts give you the ability to "host" more than one Web site and domain on your computer.
helpful link: http://sawmac.com/xampp/virtualhosts/
*/
to convert "localhost/sitenamefolder into newsitename.com
================= add following code to "httpd-vhosts.txt" ======================
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "E:\xampp\htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "E:\xampp\htdocs\sitenamefolder"
ServerName newsitename.com
<Directory "E:\xampp\htdocs\sitenamefolder">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
==================== add following code "hosts.php" =============================
127.0.0.1 newsitename.com