I installed the PDT PhP Development Tool in eclipse in order to run PhP files, but when I click in "Run as > PhP Web Aplication" it shows me a white page with the message:
Not Found
The requested URL /teste/teste.php was not found on this server.
Apache/2.4.23 (Debian) Server at localhost Port 80
Apache is running normally in 127.0.0.1.
I have an info.php file at /var/www/info.php, I tryend to tun http://localhost/info.php but it gives the same Not Found error.
Yes, I'm newbie in PhP, I'm trying to run a simple Hello World Program.
<?php
echo "Hello!";
?>
My info.php is:
<?php phpinfo(); ?>