Is there any way that I can block WampServer home page to be accessible from a remote machine (over a LAN) but still I want folders to be accessible.
Eg : I want : http://192.168.127.98 to be blocked
and http://192.168.127.98/website/ to be accessible
Thanks Quentin, you saved my day. I edited httpd.conf
<Directory "c:/wamp/www">
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
Allow from localhost
</Directory>
<Directory "c:/wamp/www/website">
Allow from all
</Directory>
and it works like a charm