Search This Blog

Sunday, August 6, 2023

Enable local network access to sites on WAMP Server 3.2.6

 

In the place of httpd.conf , in the follwoing tagg , add

<Directory "d:/wamp/www/">

  # Require local

    Require all granted


     Order Deny,Allow

     Allow from all

</Directory>


also open httpd-vhosts.conf , modfy as below

<VirtualHost *:80>

    #Require local 

    Require all granted

</Directory>

</VirtualHost>