Gracias, con lo que me diste hice una modificación en el código, ahora esta todo correcto excepto.
Código PHP:
<?php
$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
if(empty($URL))
{
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>
';
}
else
{
$Descripcion = "xxxx";
$Titulo ='xxxx';
$Keyw ='xxxxx';
$Titulo2 = "xxxxxxx";
$Pagina ="Indice.html";
include "index.html";
}
?>
Ahora, lo que quiero es que al escribir index.php no me salga el error
Notice: Undefined index: s in C:\wamp\www\Articulos\index.php on line 9
O sea cuando no escriba index.php?s=xxxxx no me salga algun error...