1
Good morning guys. I’m developing a new site but I have a question here regarding the structure because of google. I will explain. The structure of the pages of the site is being through includes, as in the file "wood.php" below. That is, I’m assembling all the content of this page calling other pages including body through includes. My question is: will google index all the files correctly? That is, can it show in the results both the main page I called "wood.php" and her body I made separately "body-wood.html"? This won’t hurt me, since I want it to show only the main page which is wood.php? If it has become complicated the explanation question there that I clarify better.
<!DOCTYPE html>
<html lang="pt-br">
<head>
<?php
include "head.html"
?>
<title>Titulo do site</title>
</head>
<body style="font-family: comfortaa;">
<!-- puxa o header, ou seja, o menu do seu website -->
<?php
include "header.html"
?>
<!-- puxa o body da pagina teste -->
<?php
include "madeira-body.html"
?>
<!-- puxa a páกgina footer, ou seja, o final do website -->
<?php
include "footer.html"
?>
</body>
</html>
It will index only one page, the one that makes the includes
– Denis Rudnei de Souza
Unless the others are available for listing, then he’ll see the main and the others
– Denis Rudnei de Souza