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 : 192.168.0.100 to be blocked
and 192.168.0.100/easyappointments/ to be accessible
btw this is what my httpd-vhosts.conf file currently looks like
<VirtualHost *:80>
ServerName localhost
DocumentRoot c:/wamp64/www
<Directory "c:/wamp64/www/">
#Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
#
<VirtualHost *:80>
ServerName easyappointments
DocumentRoot c:/wamp64/www/easyappointments
<Directory "c:/wamp64/www/easyappointments/">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
Eg : I want : 192.168.0.100 to be blocked
and 192.168.0.100/easyappointments/ to be accessible
btw this is what my httpd-vhosts.conf file currently looks like
<VirtualHost *:80>
ServerName localhost
DocumentRoot c:/wamp64/www
<Directory "c:/wamp64/www/">
#Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
#
<VirtualHost *:80>
ServerName easyappointments
DocumentRoot c:/wamp64/www/easyappointments
<Directory "c:/wamp64/www/easyappointments/">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>