I have a wampserver 3.0.6 installed in windows server 2016 with a public ip xxx.xxx.xx.xx
I have make changes to httpd.conf file like below:
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +FollowSymLinks +Multiviews
AllowOverride all
# onlineoffline tag - don't remove
Require all granted
</Directory>
and in httpd-vhosts.conf file as:
# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
DocumentRoot c:/wamp64/www
<Directory "c:/wamp64/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
#
Now When i try to access the localhost by entering "xxx.xxx.xx.xx" from other computer I am not getting the response.
This question is asked many times in stackoverflow. But those solutions given didnot worked so I am asking here this question again.
Can anybody figure out how to fix this issue.
Thank You.