Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/07/2009, 16:49
easy
 
Fecha de Ingreso: diciembre-2008
Mensajes: 454
Antigüedad: 15 años, 4 meses
Puntos: 2
Include y google

Amigos, tengo una duda.

Si yo pongo las etiquetas meta (<meta name...../>) con un include para no copiarla en todas las paginas, google me lo leeria??

es decir si tengo:
Ejemplo:
Código HTML:
<!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=utf-8" />
<title>titulo</title>
<meta name="description" content="mi descripcion"/>
<meta name="keywords" content="keywords"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="revisit-after" content="dias a indicarle al robot que lo indexe"/>
<meta name="robots" content="index,follow"/>
<meta name="distribution" content="global"/>
</head>

<body>
</body>
</html> 

Lo podria poner asi??

Código HTML:
<!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>
<? include"metaname.php"; ?>
</head>

<body>
</body>
</html> 
Gracias