Hi
In my local machine i have 5 different projects stored in H:\xampp\htdocs
i have to set virtual host for first two domain
but i need to call the other in usual manner
ie. for my first two projects the urls will be
http ://project1.local
http ://project2.local
and the other projects am planning to call as
http ://localhost/project3
http ://localhost/project4
http ://localhost/project5
am able to set the multiple domains for first two folders
but when i call any folder from last three
it gives me an Object not found error
this is how i have set the virtual hosts
1) C:\Windows\System32\drivers\etc\hosts
#127.0.0.1 localhost
127.0.0.1 project1.local
127.0.0.1 project2.local
2) H:\xampp\apache\conf\extra
uncommnet NameVirtualHost *:80
3) <VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot H:/xampp/htdocs/project1
ServerName project1.local
<Directory "H:/xampp/htdocs/project1">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
4) <VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot H:/xampp/htdocs/project2
ServerName project2.local
<Directory "H:/xampp/htdocs/project2">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
so i need two virtual hosts to be working
as well as the other folders needs to call in normal way
please help me to solve this issue
Regards
Anees