I try made simple html files on my main domain
index.html
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<p><font size="7"><strong>Website is under construction</strong></font></p>
<p><font size="7"><strong><a href="redirect.php" title="">Click to Redirect</a> </strong></font></p>
</body>
</html>
when i go to http://panzerbandit.co.cc is fine, but when i clicked link to redirect.php, i got 500 internal server error
redirect.php
Code:
<?php
$redirect = 'http://dunia-games.com';
echo "<center><font face=\"tahoma\">Click <a href=\"$redirect\">here</a> if your browser does not automatically redirect you</font></center>";
?>
<SCRIPT LANGUAGE="JavaScript">
redirTime = "2550";
redirURL = "<?php echo $redirect ?>";
function redirTimer() {
self.setTimeout("self.location.href = redirURL;",redirTime);}
</script>
<BODY onLoad="redirTimer()">
Please somebody help me, why my hosting cannot running php files ??