I have two different sites and i want to host both of them through wamp server for example, my first site is http://one.gov.ae and the second one is http://two.gov.ae
what I want is when I type the first site it should open the index for the first one and i when i type the second one it should open the second site.
but whatever I type it open the index for the first one
however I add both sits in httpd-vhosts.con and uncomment the following line in http.conf
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
So anyone can tell me what I can do in such situation
here is my httpd-vhosts.conf code
<VirtualHost 172.20.10.121:80>
# ServerAdmin admin@localhost
DocumentRoot "C:/wamp/www"
ServerName localhost
# ServerAlias www.dummy-host.localhost
# ErrorLog "logs/dummy-host.localhost-error.log"
# CustomLog "logs/dummy-host.localhost-access.log" common
</VirtualHost>
<VirtualHost 172.20.10.121:8080>
# ServerAdmin webmaster@meera.am.gov.ae
ServerName meera.am.gov.ae
DocumentRoot "c:wamp/www/meera"
Directoryindex index.php index.html
# ErrorLog "logs/dummy-host2.localhost-error.log"
# CustomLog "logs/dummy-host2.localhost-access.log" common
</VirtualHost>
I comment the following in httpd file
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
# Order allow,deny
# Deny from all
# Satisfy All
</FilesMatch>
prevent .htaccess and .htpasswd files from being viewed by Web clientsDO NOT COMMENT OUT these lines. As the documentation says it stops these files form being sent to the clients does not stop them form working. (And overriding default options). – vbence May 2 '11 at 8:46