localhost と phpmyadmin にはアクセスできますが、自分のプロジェクトがあるディレクトリにはアクセスできません。
localhost/C:/wamp/www ===> You don't have permission to access /C: on this server.
localhost と phpmyadmin にはアクセスできますが、自分のプロジェクトがあるディレクトリにはアクセスできません。
localhost/C:/wamp/www ===> You don't have permission to access /C: on this server.
http.conf で、Allow from 127.0.0.1 を Allow from 127.0.0.1 ::1 に変更します。
Apache 構成ファイル http.conf を見てください。
そのファイル内には、次のような行があります。
DocumentRoot "C:/Program Files/Apache Group/Apache/htdocs"
Apache サーバーの DocumentRoot は、"localhost" を要求したときに表示される場所です。プロジェクトが DocumentRoot にあることを確認してください。たとえば、プロジェクトを「C:/Program Files/Apache Group/Apache/htdocs/projects」にコピーし、//localhost/projects/yourproject.php でサーバーにクエリを実行します。