Hello, for my site i use PHP Includes but, when you go to the site it displayes my 404 page, but i want it to display my home page, but it wont,
please help
my code:
you can view it in action atCode:<?php // File include by Blob off of HabboxForum $config = array("default" => "home.php", // Default Page (with trailing .php) "directory" => "pages/", // Directory where files are held (with trailing slash) "restricted" => array( "index" ), // Restricted pages "404" => "404.php" // Error Page (with trailing .php) ); $page = str_replace("/", "", ( ( ( in_array( $_GET["page"], $config["restricted"] ) ) !== false ) ? "home" : $_GET["page"] ) ); ( file_exists( $config["directory"] . $page . ".php" ) !== false ) ? include( $config["directory"] . $page . ".php" ) : include( $config["directory"] . $config["404"] ); ?>
http://www.dfiles.co.cc/site





Reply With Quote

