Access web from outside localhost in Wampp
Go to c:\wamp64\bin\apache\apache2.4.35\conf\extra and edit
httpd-vhosts.conf
Before
---------------
# Virtual Hosts
#
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
After edit
--------------------------
# Virtual Hosts
#
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
No comments