Muchisimas gracias a todos,
La solución fue por PHP con el file_get_contents
Cree un archivo con los datos de header en .html aparte.
Y en el index.php llame al archivo así:
Cita: <?php
$página_inicio = file_get_contents('http://www.example.com/php/header.html');
echo $página_inicio;
?>
Mil gracias de nuevo a todos.