yo habia estructurado un web modular de la siguiente manera, pero no se si sera la mejor opción...
Código:
<?
$path=$_GET["path"];
?>
<html>
<head>
<? include("files/meta-tags.php") ?>
</head>
<body>
<!-- ADORNOS HTML... -->
<? include("files/enc.php") ?>
<!-- MAS ADORNOS HTML... -->
<? include("$path") ?>
<!-- MAS ADORNOS HTML... -->
<? include("files/pie.php") ?>
</body>
</html>
La variable path es la que me traeria el contenido, por ejemplo:
http://www.mi-sitio.com.ar/?path=manuales/manual.php
je, ustedes diran...
saludos...