WAMPサーバーの最新バージョン(PHPとApacheとMySQL)をダウンロードしましたが、問題があります。localhostにいるときはすべて正常に動作しますが、ブラウザからパブリックIPにアクセスすると、次のように表示されます。
You don't have permission to access / on this server.
Apache/2.4.23 (Win64) PHP/5.6.25 Server at 95********* Port 80
どうすれば修正できますか?
すでに修正済み:
# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
DocumentRoot c:/wamp64/www
<Directory "c:/wamp64/www/">
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
#