Header Ads

  • New Updates

    How access wamp server from local network or outside local network



    My Wamp Version

    Version : Wamp 3.14
    Apache version : 2.4.35

    Just go Wamp folder and find https-vhost.conf file and edit as below,

    File location : D:\wamp64\bin\apache\apache2.4.35\conf\extra\httpd-vhosts.conf

    Before Edit

    <VirtualHost *:80>
      ServerName localhost
      ServerAlias localhost
      DocumentRoot "${INSTALL_DIR}/www"
      <Directory "${INSTALL_DIR}/www/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require local
      </Directory>
    </VirtualHost>


    After Edit


    # Virtual Hosts

    <VirtualHost *:80>
      ServerName localhost
      ServerAlias localhost
      DocumentRoot "${INSTALL_DIR}/www"
      <Directory "${INSTALL_DIR}/www/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require all granted
      </Directory>
    </VirtualHost>

    Then Restart All wamp services and check the connection from outside the local web server :)


    No comments

    Post Top Ad

    Post Bottom Ad

    Ads