The problem is that there
is an index.html file.
index.html takes precedence over index.php (due to the way apache's configuration file is set up ), so if an index.html file exists, the index.php won't be seen.
You have an index.html file in there with this code:
Code:
<html><head><title>Heart-Ache [dot] ORG<title><head>
<body><center>Under Construction<center><body><html>
hey
Which doesn't display because it's not written correctly.
But since index.php is the page you want to be seen you can just delete the index.html file.