Hi guys,
I did a little research, but I cannot be able to find the answer. So I need your help. How I could hide the 404 not found that if the server is down or if the file get deleted?
Here it is the php that I am using:
<?php
require_once('auth.php');
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Member Index</title>
<link href="loginmodule.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Welcome <?php echo $_SESSION['SESS_FIRST_NAME'];?></h1>
Home | <a href="home.php">My Account</a> | <a href="logout.php">Logout</a>
?>
If it impossible to hide the 404 not found error, then I have got another question: how could I hide the actual url in the address bar by using the script on above?
Hope you can help!
Thanks,
Mark