1
I have a page .onion
hosted by Freedom, which supports PHP 5, I’m trying to load the site’s home page home.html
from the "Loader" index.php
, in which it begins in the code:
<?php
$get = $_GET['load'];
if(strpos($_GET['load'],'/language/') !== false) {
$loadurl = file_get_contents("home.html");
echo($loadurl);
exit;
}
then when I go to the site, this is what appears at the beginning of the page and it is not displayed correctly:
both files are in the root of the hosting directory. how to troubleshoot these messages?