Código PHP:
Ver original<?php
{
echo '
<!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" />
<meta name="robots" conte="noindex,nofollow" />
<title>Página no encontrada</title>
</head>
<body>Error 404: Página no encontrada
</body>
</html>
';
}
$URL = $_GET['s'];
$ext = ".html";
$Pagina = $URL.$ext;
if ($URL == "xxxxxxxxxxxxxxxxxx")
{
$Descripcion ='xxxxxxxxxxxxxxxxxxxxxxxx';
$Titulo ='xxxxxxxxxxxxxxxxxxx';
$Keyw ='xxxxxxxxxxxxx';
}elseif ($URL == "xxxxxxxxxxxxxxxxxxxxxxx"){
$Descripcion ='xxxxxxxxxxxxxxxxxxxxxxxx';
$Titulo ='xxxxxxxxxxxxxxxxxxx';
$Keyw ='xxxxxxxxxxxxx';
}
// y asi con todas mis páginas
$Descripcion = "xxxx";
$Titulo ='xxxx';
$Keyw ='xxxxx';
$Titulo2 = "xxxxxxx";
$Pagina ="Indice.html";
include "index.html";
?>