<?php


    # Attempt to display the server's 404 error message


    # a file that does not exist
    $not = 'http://'.$_SERVER['HTTP_HOST'].'/monofiles/index.monofilenotexist';


    $strcon = stream_context_create(['http'=>['ignore_errors'=>true]]);
    $stream = file_get_contents($not,false,$strcon);
    
    if ($stream !== false)
        echo $stream;
            
    else
        echo
            "<!doctype html> \n<html><head><meta charset=\"utf-8\"><title>Categories</title></head><body> \n<h1>Document not found</h1> \n<p>The requested URL was not found on this server.</p><h2>Error 404</h2> \n</body> \n</html>"

?>