XAMPP for Windows 1.8.2 PHP 5.4, Operating System: windows xp
I use username and passowrd in XAMPP
C: \ Windows \ system32 \ Drivers \ Etc \ hosts 127.0.0.1 hindustans.local 127.0.0.1 read.local
E: \ My projects \ wesites \ read index.html
HTTPD-vhosts.conf
<Directory "E:/My Projects/wesites/read">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "E:/My Projects/wesites/read"
ServerName read
Options +Indexes
</VirtualHost>
read.local works fine with c: \ xampp \ htdocs But read.local does not work with E: \ My projects \ wesites \ read \ index.html
I briefly want to start a project from E: \ My Projects \ wesites \ read
source
share