eg.
file structure
+Site
| +private_files
| | header.php
| | footer.php
| | head.php
| | anlytics.php
| | blah1.php
| | blah2.php
| | blah3.php
| index1.php
| index2.php
every serving file requires
header.php,footer.php,head.php,analytics.php.besides
index1.phprequiresblah1.phpandblah2.php.index2.phprequiresblah2.php,blah3.php.
page structure
<!DOCTYPE html>
<html>
<?php include 'private/head.php'?>
<body>
<?php include 'private/header.php'?>
//rest code
<?php include 'private/footer.php'?>
</body>
</html>
How compressed HTML files can be served without aid of apache module ?
header.phpis included before any kind of output? right?